What is thread safe or non-thread safe in PHP?
问题 I saw different binaries for PHP, like non-thread or thread safe? What does this mean? What is the difference between these packages? 回答1: Needed background on concurrency approaches: Different web servers implement different techniques for handling incoming HTTP requests in parallel. A pretty popular technique is using threads -- that is, the web server will create/dedicate a single thread for each incoming request. The Apache HTTP web server supports multiple models for handling requests,