This repository was archived by the owner on Mar 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
[ ![ Total Downloads] ( https://poser.pugx.org/swooletw/laravel-swoole/downloads )] ( https://packagist.org/packages/swooletw/laravel-swoole )
6
6
[ ![ travis-badge] ( https://api.travis-ci.org/swooletw/laravel-swoole.svg?branch=master )] ( https://travis-ci.org/swooletw/laravel-swoole )
7
7
8
- This package provides a high performance HTTP server to speed up your laravel/lumen application based on [ Swoole] ( http://www.swoole.com/ ) .
8
+ This package provides a high performance HTTP server to speed up your Laravel/Lumen application based on [ Swoole] ( http://www.swoole.com/ ) .
9
9
10
10
## Version Compatibility
11
11
@@ -16,7 +16,7 @@ This package provides a high performance HTTP server to speed up your laravel/lu
16
16
## Features
17
17
18
18
* Run ** Laravel/Lumen** application on top of ** Swoole** .
19
- * Outstanding performance boosting up to ** 30x** .
19
+ * Outstanding performance boosting up to ** 30x** .
20
20
* Sandbox mode to isolate app container.
21
21
* Support running websocket server in ** Laravel** .
22
22
* Support ` Socket.io ` protocol.
@@ -63,7 +63,7 @@ Transfer/sec: 1.55MB
63
63
64
64
## Support
65
65
66
- Bugs and feature request are tracked on [ Github ] ( https://github.com/swooletw/laravel-swoole/issues ) .
66
+ Bugs and feature request are tracked on [ GitHub ] ( https://github.com/swooletw/laravel-swoole/issues ) .
67
67
68
68
## Credits
69
69
Original file line number Diff line number Diff line change 19
19
'pid_file ' => env ('SWOOLE_HTTP_PID_FILE ' , base_path ('storage/logs/swoole_http.pid ' )),
20
20
'log_file ' => env ('SWOOLE_HTTP_LOG_FILE ' , base_path ('storage/logs/swoole_http.log ' )),
21
21
'daemonize ' => env ('SWOOLE_HTTP_DAEMONIZE ' , false ),
22
- // Normally this value should be 1~4 times lager according to your cpu cores.
22
+ // Normally this value should be 1~4 times larger according to your cpu cores.
23
23
'reactor_num ' => env ('SWOOLE_HTTP_REACTOR_NUM ' , swoole_cpu_num () * 2 ),
24
24
'worker_num ' => env ('SWOOLE_HTTP_WORKER_NUM ' , swoole_cpu_num () * 2 ),
25
25
'task_worker_num ' => env ('SWOOLE_HTTP_TASK_WORKER_NUM ' , swoole_cpu_num () * 2 ),
You can’t perform that action at this time.
0 commit comments