mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-08-11 00:03:58 +02:00
Fixing minor typo
This commit is contained in:
@@ -19,7 +19,7 @@ one real limitation of APC is that it is tied to the server it's installed on. M
|
|||||||
as a separate service and can be accessed across the network, meaning that you can store objects in a hyper-fast data
|
as a separate service and can be accessed across the network, meaning that you can store objects in a hyper-fast data
|
||||||
store in a central location and many different systems can pull from it.
|
store in a central location and many different systems can pull from it.
|
||||||
|
|
||||||
Note that when running PHP as a (Fast-)CGI application inside your webserver, every PHP processes will have its own
|
Note that when running PHP as a (Fast-)CGI application inside your webserver, every PHP process will have its own
|
||||||
cache, i.e. APC data is not shared between your worker processes. In these cases, you might want to consider using
|
cache, i.e. APC data is not shared between your worker processes. In these cases, you might want to consider using
|
||||||
memcached instead, as it's not tied to the PHP processes.
|
memcached instead, as it's not tied to the PHP processes.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user