Home > Article > PHP Framework > Why use swoole
Why use swoole?
Because the Swoole open source project was born to make up for the shortcomings of PHP in these aspects. Unlike products such as WordPress, swoole is actually an engine for network communication and asynchronous IO, and a basic library.
Compared with apache/fpm, the swoole framework mainly saves the performance loss caused by the creation and destruction of each request of the PHP framework and global objects.
The swoole framework provides programmers with the greatest space, and global objects unrelated to http requests only need to be constructed once. Cache control of certain objects and data can also be performed in the program.
Recommended: "swoole tutorial"
The above is the detailed content of Why use swoole. For more information, please follow other related articles on the PHP Chinese website!