Analysis of the differences between the two versions of php5 non-thread-safe and thread-safe_PHP Tutorial

WBOY
Release: 2016-07-21 15:39:43
Original
951 people have browsed it

Let’s understand it literally. None-Thread Safe means non-thread safety, and no thread safety check is performed during execution; Thread Safe means thread safety, and thread safety check is performed during execution to prevent new requirements. CGI execution that starts new threads exhausts system resources.

Let’s look at the two execution methods of PHP: ISAPI and FastCGI. The FastCGI execution method uses a single thread to perform operations, so there is no need to perform thread safety checks. Removing the protection of thread safety checks can improve execution efficiency. Therefore, if FastCGI (whether paired with IIS 6 or IIS 7) is used to execute PHP, It is recommended to download and execute non-thread safe PHP (PHP binary files have two packaging methods: msi and zip, please download the zip package). The thread safety check is prepared for ISAPI PHP. Because many PHP modules are not thread safe, you need to use Thread Safe PHP.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/321522.htmlTechArticleFirst understand it literally, None-Thread Safe means non-thread safety, no threading is performed during execution (thread ) security check; Thread Safe means thread safety, and threads will be performed during execution (...
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!