Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit 56064ac

Browse files
committed
Merge branch 'develop' of https://github.com/swooletw/laravel-swoole into develop
2 parents 38808d5 + 3f6e17b commit 56064ac

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Total Downloads](https://poser.pugx.org/swooletw/laravel-swoole/downloads)](https://packagist.org/packages/swooletw/laravel-swoole)
66
[![travis-badge](https://api.travis-ci.org/swooletw/laravel-swoole.svg?branch=master)](https://travis-ci.org/swooletw/laravel-swoole)
77

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/).
99

1010
## Version Compatibility
1111

@@ -16,7 +16,7 @@ This package provides a high performance HTTP server to speed up your laravel/lu
1616
## Features
1717

1818
* Run **Laravel/Lumen** application on top of **Swoole**.
19-
* Outstanding performance boosting up to **30x**.
19+
* Outstanding performance boosting up to **30x**.
2020
* Sandbox mode to isolate app container.
2121
* Support running websocket server in **Laravel**.
2222
* Support `Socket.io` protocol.
@@ -63,7 +63,7 @@ Transfer/sec: 1.55MB
6363

6464
## Support
6565

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).
6767

6868
## Credits
6969

config/swoole_http.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'pid_file' => env('SWOOLE_HTTP_PID_FILE', base_path('storage/logs/swoole_http.pid')),
2020
'log_file' => env('SWOOLE_HTTP_LOG_FILE', base_path('storage/logs/swoole_http.log')),
2121
'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.
2323
'reactor_num' => env('SWOOLE_HTTP_REACTOR_NUM', swoole_cpu_num() * 2),
2424
'worker_num' => env('SWOOLE_HTTP_WORKER_NUM', swoole_cpu_num() * 2),
2525
'task_worker_num' => env('SWOOLE_HTTP_TASK_WORKER_NUM', swoole_cpu_num() * 2),

0 commit comments

Comments
 (0)