PHP code example of tourze / swoole-yii2
1. Go to this page and download the library: Download tourze/swoole-yii2 library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
tourze / swoole-yii2 example snippets
return [
'swooleHttp' => [
'frontend' => [
'host' => '127.0.0.1',
'port' => '6677',
'root' => realpath(__DIR__ . '/../../frontend/web'),
// 在这里定义一些常用的可以常驻与内存的组件
'persistClasses' => [
'dmstr\web\AdminLteAsset',
'dmstr\widgets\Alert',
'kartik\grid\ActionColumn',
'kartik\grid\ActionColumnAsset',
'kartik\grid\BooleanColumn',
'kartik\grid\CheckboxColumn',
'kartik\grid\CheckboxColumnAsset',
'kartik\grid\DataColumn',
'kartik\grid\GridView',
'kartik\grid\GridViewAsset',
'kartik\grid\GridExportAsset',
'kartik\grid\GridResizeColumnsAsset',
],
// bootstrap文件, 只会引入一次
'bootstrapFile' => [
__DIR__ . '/../../common/config/aliases.php',
__DIR__ . '/../../admin/config/aliases.php',
],
// Yii的配置文件, 只会引入一次
'configFile' => [
__DIR__ . '/../../common/config/main.php',
__DIR__ . '/../../frontend/config/main.php'
],
// 有一些模块比较特殊, 无法实现Refreshable接口, 此时唯有在这里指定他的类名
'bootstrapRefresh' => [
'xxx\backend\Bootstrap',
],
// 配置参考 https://www.kancloud.cn/admins/swoole/201155
'server' => [
'worker_num' => 20,
'max_request' => 10000,
'task_worker_num' => 50, // 任务进程数
'buffer_output_size' => 16 * 1024 * 1024, // 该参数可选, 如果你的业务需要输出大文件(如巨型html或导出大文件), 具体参考 http://wiki.swoole.com/wiki/page/440.html
],
],
],
];