


swoole http server integrates phalcon, ab test, reports that php memory is exhausted
在整合swoole http server和phalcon,server.php如下:
<code><?php use Phalcon\DI; use Phalcon\Loader; use Phalcon\Mvc\Router; use Phalcon\Mvc\Dispatcher; use Phalcon\Http\Response; use Phalcon\Http\Request; use Phalcon\Mvc\View; use Phalcon\Db\Adapter\Pdo\Mysql as Database; use Phalcon\Mvc\Application as BaseApplication; use Phalcon\Mvc\Model\Metadata\Memory as MemoryMetaData; use Phalcon\Mvc\Model\Manager as ModelsManager; class Application extends BaseApplication { protected function registerAutoloaders() { $loader = new Loader(); $loader->registerDirs(array( '../apps/controllers/', '../apps/models/' )); $loader->register(); } /** * This methods registers the services to be used by the application */ protected function registerServices() { $di = new DI(); //Registering a router $di->set('router', function(){ return new Router(); }); //Registering a dispatcher $di->set('dispatcher', function(){ return new Dispatcher(); }); //Registering a Http\Response $di->set('response', function(){ return new Response(); }); //Registering a Http\Request $di->set('request', function(){ return new Request(); }); //Registering the view component $di->set('view', function(){ $view = new View(); $view->setViewsDir('../apps/views/'); return $view; }); $di->set('db', function(){ return new Database(array( "host" => "localhost", "username" => "root", "password" => "", "dbname" => "invo" )); }); //Registering the Models-Metadata $di->set('modelsMetadata', function(){ return new MemoryMetaData(); }); //Registering the Models Manager $di->set('modelsManager', function(){ return new ModelsManager(); }); $this->setDI($di); } public function main() { $this->registerServices(); $this->registerAutoloaders(); } } $application = null; $http = new swoole_http_server("0.0.0.0", 9501); $http->on('request', function ($request, $response) { try { $_GET = $_POST = $_COOKIE = $_REQUEST = []; if (!empty($request->get)) { $_GET = $request->get; $_REQUEST += $_GET; } if (!empty($request->post)) { $_POST = $request->post; $_REQUEST += $_POST; } if (!empty($request->cookie)) { $_COOKIE = $request->cookie; } global $application; $html = $application->handle($request->server['request_uri'])->getContent(); $response->end($html); } catch (\Exception $e){ print_r($e); echo $e->getMessage(); } }); $http->on('WorkerStart', function($server, $workerId) { global $application; $application = new Application(); $application->main(); }); # 启动服务器 $http->start();</code>
浏览器访问没什么问题
做ab测试就报错了
<code>ab -n 10000 -c 1000 -rk http://phalcon.com/</code>
错误信息:
<code>[root@localhost public]# [2016-08-25 17:12:45 *12502.0] ERROR zm_deactivate_swoole (ERROR 103): Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 16384 bytes) in /srv/www/single/public/server.php on line 126. [2016-08-25 17:12:45 $12497.0] WARNING swManager_check_exit_status: worker#0 abnormal exit, status=255, signal=0</code>
请教这是什么原因导致的,是onRequest那里写的不对吗?

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
