Skip to content

Commit 78cff89

Browse files
PowerKiKidrbyte
andauthored
Update _posts/14-03-01-Object-Caching.md
Co-authored-by: Chris Brown <[email protected]>
1 parent 12f59ff commit 78cff89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ hyper-fast data store in a central location and many different systems can pull
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
2525
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 exists for the duration of the command. So you have to be mindful of your
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
2727
situation and goals. And 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

0 commit comments

Comments
 (0)