Home > PHP Framework > Swoole > body text

How to start swoole

(*-*)浩
Release: 2019-12-09 09:06:45
Original
6570 people have browsed it

How to start swoole

Startup

If you want to automatically run your Server at startup, you can do so in the /etc/rc.local file Join (Recommended learning: swoole video tutorial)

/usr/bin/php /data/webroot/www.swoole.com/server.php
Copy after login

It is recommended to use systemd or supervisor to implement service management.

Start the server and listen to all TCP/UDP ports. Function prototype:

bool Server->start()
Copy after login

After successful startup, worker_num 2 processes will be created. Master process Manager process serv->worker_num Worker processes.

Failure to start will return false immediately

After successful startup, it will enter the event loop and wait for the client connection request. The code after the start method will not be executed

After the server is shut down, the start function returns true and continues to execute downwards

Setting task_worker_num will increase the corresponding number of Task processes

The methods before start in the method list can only be used before start is called, and the methods after start can only be used in onWorkerStart, onReceive and other event callback functions

The above is the detailed content of How to start swoole. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template