Skip to content

Commit afbe017

Browse files
committed
Rephrase Object Caching section a little, improve phrasing/grammar
1 parent 2d288e7 commit afbe017

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

_posts/14-03-01-Object-Caching.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ hyper-fast data store in a central location and many different systems can pull
2222

2323
Note that whether the cache is shared across PHP processes depends on how PHP is used. When running PHP via PHP-FPM,
2424
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.
2828

2929
In a networked configuration APCu will usually outperform memcached in terms of access speed, but memcached will be
3030
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) {
4444
print_r($data);
4545
{% endhighlight %}
4646
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-
5047
### Learn more about popular object caching systems:
5148
5249
* [APCu](https://github.com/krakjoe/apcu)

0 commit comments

Comments
 (0)