Home PHP Framework Swoole How to start swoole

How to start swoole

Dec 09, 2019 am 09:06 AM
swoole

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)

1

/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:

1

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!

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

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Which one is better, swoole or workerman? Which one is better, swoole or workerman? Apr 09, 2024 pm 07:00 PM

Which one is better, swoole or workerman?

How to use Swoole to implement a high-performance HTTP reverse proxy server How to use Swoole to implement a high-performance HTTP reverse proxy server Nov 07, 2023 am 08:18 AM

How to use Swoole to implement a high-performance HTTP reverse proxy server

How does swoole_process allow users to switch? How does swoole_process allow users to switch? Apr 09, 2024 pm 06:21 PM

How does swoole_process allow users to switch?

How to use swoole coroutine in laravel How to use swoole coroutine in laravel Apr 09, 2024 pm 06:48 PM

How to use swoole coroutine in laravel

How to restart the service in swoole framework How to restart the service in swoole framework Apr 09, 2024 pm 06:15 PM

How to restart the service in swoole framework

Which one has better performance, swoole or java? Which one has better performance, swoole or java? Apr 09, 2024 pm 07:03 PM

Which one has better performance, swoole or java?

Swoole Advanced: How to Optimize Server CPU Utilization Swoole Advanced: How to Optimize Server CPU Utilization Nov 07, 2023 pm 12:27 PM

Swoole Advanced: How to Optimize Server CPU Utilization

Swoole in action: How to use coroutines for concurrent task processing Swoole in action: How to use coroutines for concurrent task processing Nov 07, 2023 pm 02:55 PM

Swoole in action: How to use coroutines for concurrent task processing

See all articles