Controller
<?php
class Default_HelloWorldSuccessView extends DemoDefaultBaseView {
  public function 
executeHtml(AgaviRequestDataHolder $rd) {
    
$this->setupHtml($rd);

    
$this->setAttribute('title''Test');
    
$this->setAttribute('body''Hello World');
  }
}
?>
View
<html>
<head>
<title><?php echo $template['title']?></title>
</head>
<body>
<?php echo $template['body'?>
</body>
</html>
Performance Development
Response time:              0.60 secs
Transaction rate:           8.24 trans/sec
Performance Production
Response time:		        0.04 secs
Transaction rate:	      126.91 trans/sec