From 3b9211bf3db128f8b44f626824b684e2729429d0 Mon Sep 17 00:00:00 2001 From: Akshay Agarwal Date: Sun, 20 Jan 2013 19:47:53 +0530 Subject: [PATCH] Fixing minor typo --- _posts/10-03-01-Object-Caching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/10-03-01-Object-Caching.md b/_posts/10-03-01-Object-Caching.md index f00e8b4..f609625 100644 --- a/_posts/10-03-01-Object-Caching.md +++ b/_posts/10-03-01-Object-Caching.md @@ -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 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 memcached instead, as it's not tied to the PHP processes.