current location:Home > Technical Articles > PHP Framework > Swoole
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Daily Programming WeChat Applet Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- How to catch php errors with swoole
- In PHP, fatal errors can be captured through register_shutdown_function+error_get_last 2 functions and the error information is sent to the client connection.
- Swoole 1864 2019-12-16 09:35:12
-
- How to restart the swoole process after it is closed
- After the swoole process is closed, you can use the Server->reload method to restart it. Swoole provides a flexible termination/restart mechanism. The administrator only needs to send a specific signal to the server, and the server's Worker process can be safely terminated or restarted.
- Swoole 2903 2019-12-16 09:32:43
-
- Does swoole worker have event polling?
- The swoole worker has event polling. The swoole_server thread mode is the multi-threaded Worker mode. The Reactor thread handles network event polling and reads data. There will be synchronization problems when accessing shared memory, and the lock mechanism provided by Swoole needs to be used to protect data.
- Swoole 2205 2019-12-16 09:28:08
-
- Will the swoole task block?
- The swoole task will block, and the number of task operations must be less than the onTask processing speed. If the delivery capacity exceeds the processing capacity, the task will fill the cache area, causing the worker process to block.
- Swoole 2892 2019-12-16 09:18:31
-
- How to use PHP swoole
- swoole perfectly supports the PHP language, is written in pure C language, and provides an asynchronous multi-threaded server in the PHP language. So Swoole built an asynchronous server to provide a series of tasks such as asynchronous response, push, and scheduled tasks. It is a common choice.
- Swoole 3426 2019-12-16 09:08:15
-
- The difference between swoole and rpc in php
- The difference between php's swoole and rpc: The RPC server provided by the Swoole framework supports features such as single connection concurrency and long connection maintenance under PHP-FPM. In the large-scale application of Wheel Internet, a service-oriented architecture of 4-layer architecture has been constructed.
- Swoole 2466 2019-12-14 14:17:01
-
- swoole's onreceive is not triggered
- This function is called back when swoole's onReceive receives data, which occurs in the worker process. If swoole's onreceive is not triggered, it may be that the data received by onReceive in a single time exceeds the default 64k.
- Swoole 2536 2019-12-14 14:13:01
-
- How to mix nginx and swoole
- Configure the server item of nginx. When a static file is requested, it is processed directly by Nginx. When the requested file does not exist, it is sent to the Swoole server for processing.
- Swoole 2622 2019-12-14 14:06:30
-
- How to make php run permanently with swoole
- Soole can make PHP run permanently by starting the daemon process. When daemonize=>1 is set, the program will go to the background and run as a daemon process. This must be enabled for long-running server-side programs.
- Swoole 2297 2019-12-14 13:39:52
-
- Is swoole open source?
- Swoole is open source and free software, and the licensing agreement is Apache2.0. Both corporate and individual developers can use Swoole's code for free, and modifications made on Swoole can be used in commercial products without open source (note: the copyright statement of the original author must be retained).
- Swoole 2320 2019-12-14 13:30:42
-
- Swoole FAQ: Introduction to 'It is present in phpinfo but not in php -m'
- If the extended information of swoole is output, it means that your installation is successful!
- Swoole 2053 2019-12-14 11:09:00
-
- What to do if swoole installation fails
- The swoole installation failed because the PHP version did not correspond to the phpize and php-config used during compilation. An absolute path was required for compilation, that is, the absolute path was used to execute PHP.
- Swoole 3349 2019-12-14 11:09:17
-
- How to get uid in swoole
- In swoole, you can use Server->bind to obtain the uid. Server->bind will bind the connection to a user-defined UID. You can set the dispatch_mode=5 value for fixed hash distribution. It can be guaranteed that all connections of a certain UID will be assigned to the same Worker process.
- Swoole 4775 2019-12-13 16:56:51
-
- How to keep swoole on
- swoole can be always enabled by starting the daemon process. Daemonization: When daemonize=>1 is set, the program will run in the background as a daemon process. This must be enabled for long-running server-side programs.
- Swoole 3206 2019-12-13 16:45:17
-
- What language is swoole written in?
- Swoole is a PHP asynchronous network communication engine for production environments. It is written in pure C language and provides asynchronous IO servers and clients of multiple communication protocols; Swoole2.0 also supports coroutines similar to Go language, which can Implement asynchronous programs using fully synchronous code.
- Swoole 1856 2019-12-13 11:34:34