Controller
<?php
class Solar_App_Hello extends Solar_Controller_Page {
    protected $_action_default = 'index';
    public $title, $body;

    public function actionIndex() {
      $this->title = 'Test';
      $this->body = 'Hello World';
    }
}
?>
View
<html>
<head>
<title><?php echo $this->title?></title>
</head>
<body>
<?php echo $this->body ?>
</body>
</html>
Performance
Response time:		        0.02 secs
Transaction rate:	      271.18 trans/sec