diff options
author | v12mike <github@ingenious.co.nz> | 2018-07-26 17:24:42 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2018-09-16 16:05:55 +0200 |
commit | 33268e5a72b3858c09d97bb696a21911ec139815 (patch) | |
tree | ccdf4e1466f1a38dfcb430cc9c7aab6873c81e90 /phpBB/phpbb/cache/driver | |
parent | 7f1f64b1dcebb28ab575e1905676471b473d08ed (diff) | |
download | forums-33268e5a72b3858c09d97bb696a21911ec139815.tar forums-33268e5a72b3858c09d97bb696a21911ec139815.tar.gz forums-33268e5a72b3858c09d97bb696a21911ec139815.tar.bz2 forums-33268e5a72b3858c09d97bb696a21911ec139815.tar.xz forums-33268e5a72b3858c09d97bb696a21911ec139815.zip |
[ticket/15726] Implement selective purge in APCu cache driver
Edit comment
PHPBB3-15726
Diffstat (limited to 'phpBB/phpbb/cache/driver')
-rw-r--r-- | phpBB/phpbb/cache/driver/apcu.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/cache/driver/apcu.php b/phpBB/phpbb/cache/driver/apcu.php index 3a63a97e4e..4b06fdb002 100644 --- a/phpBB/phpbb/cache/driver/apcu.php +++ b/phpBB/phpbb/cache/driver/apcu.php @@ -26,7 +26,7 @@ class apcu extends \phpbb\cache\driver\memory function purge() { /* - * Use an iterator to selectively clear our cache entries without disturbing + * Use an iterator to selectively delete our cache entries without disturbing * any other cache users (e.g. other phpBB boards hosted on this server) */ apcu_delete(new \APCUIterator('#^' . $this->key_prefix . '#')); |