我遇到了Phalcon一个非常奇怪的问题
每当我在控制器中使用Response
时,框架变得非常慢。
这是我的简单控制器:
<?php
// file: app/controllers/TestController.php
use Phalcon\Mvc\View;
class TestController extends ControllerBase
{
private $response;
public function initialize()
{
$this->view->setRenderLevel(View::LEVEL_NO_RENDER);
$this->response = new Phalcon\Http\Response();
$this->response->setStatusCode(200, "OK");
}
public function indexAction()
{
$this->response->setContent("phalcon")->send(); // very slow
}
}
每当我使用new Phalcon\Http\Response();
Phalcon变得非常慢。例如,用以下方法进行测试:
ab -c 50 -n 100 ...
请求/秒: 10
如果我使用空白控制器,我会
请求/秒: 1000 +
路线是:
<?php
//file: app/config/routes.php
$router = new \Phalcon\Mvc\Router();
$router->add("/:controller/:action", array("controller" => "test", "action" => "index"));
我在AWS上测试过它:
c4.large
PHP 5.5.9-1ubuntu4.6 (cli) (built: Feb 13 2015 19:17:11)
2 cpu - 3.75gb ram
Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.6
我们在使用osx 10.10.1的Macbook pro上遇到了相同的行为
问题是当我在响应上调用send()
方法时:
$this->response->send(); // slows down everything
根据@ Phate01的建议,我尝试return $response;
代替$response->send();
而且仍然很慢
答案 0 :(得分:2)
我转到此页面:http://docs.phalconphp.com/en/latest/reference/response.html 他们说那个
如果您使用完整的MVC堆栈,则无需手动创建响应。但是,如果您需要直接从控制器的操作返回响应,请遵循以下示例:
<?php
class FeedController extends Phalcon\Mvc\Controller
{
public function getAction()
{
// Getting a response instance
$response = new \Phalcon\Http\Response();
$feed = //.. load here the feed
//Set the content of the response
$response->setContent($feed->asString());
//Return the response
return $response;
}
}
?>
如您所见,它直接返回Response
对象。
我想你应该在控制器外调用->send()
,并添加一些标题会有帮助