You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: _posts/14-03-01-Object-Caching.md
+3-6
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,9 @@ hyper-fast data store in a central location and many different systems can pull
22
22
23
23
Note that whether the cache is shared across PHP processes depends on how PHP is used. When running PHP via PHP-FPM,
24
24
the cache is shared across all processes of all pools. When running PHP as a (Fast-)CGI application inside your
25
-
webserver, the cache is not shared, i.e every PHP process will have its own APCu data. When running PHP as a command
26
-
line, the cache is not shared and will only exist for the duration of the command. So you have to be mindful of your
27
-
situation and goals. And you might want to consider using memcached instead, as it's not tied to the PHP processes.
25
+
webserver, the cache is not shared, i.e every PHP process will have its own APCu data. When running PHP on the command
26
+
line, the cache is not shared and will only exist for the duration of the command, so you have to be mindful of your
27
+
situation and goals. You might want to consider using memcached instead, as it's not tied to the PHP processes.
28
28
29
29
In a networked configuration APCu will usually outperform memcached in terms of access speed, but memcached will be
30
30
able to scale up faster and further. If you do not expect to have multiple servers running your application, or do not
@@ -44,9 +44,6 @@ if ($data === false) {
44
44
print_r($data);
45
45
{% endhighlight %}
46
46
47
-
Note that prior to PHP 5.5, there was the APC extension which provided both an object cache and a bytecode cache. The new APCu is a project to bring APC's
48
-
object cache to PHP 5.5+, since PHP now has a built-in bytecode cache (OPcache).
49
-
50
47
### Learn more about popular object caching systems:
0 commit comments