We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
load balancer <=> nginx <=> swoole fastcgi 模式。
load balancer <=> nginx <=> swoole fastcgi
lb 与 nginx 保持长连接。而 nginx 与 swoole fastcgi 暂时无法保持长连接。 高并发时,如果使用 swoole tcp 模式,会受到临时端口数限制,如果没有及时清理,服务器上端口极有可能不够用。 建议 new swoole_server 时,支持配置成 /dev/shm/laravoole.sock 这样的unix socket 地址。
可以config直接配置成 listen,例如:
tcp://127.0.0.1:9050 unix:/dev/shm/laravoole.sock
The text was updated successfully, but these errors were encountered:
No branches or pull requests
load balancer <=> nginx <=> swoole fastcgi
模式。lb 与 nginx 保持长连接。而 nginx 与 swoole fastcgi 暂时无法保持长连接。
高并发时,如果使用 swoole tcp 模式,会受到临时端口数限制,如果没有及时清理,服务器上端口极有可能不够用。
建议 new swoole_server 时,支持配置成 /dev/shm/laravoole.sock 这样的unix socket 地址。
可以config直接配置成 listen,例如:
The text was updated successfully, but these errors were encountered: