aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/cache/driver
diff options
context:
space:
mode:
authorv12mike <github@ingenious.co.nz>2018-07-29 09:15:12 +0100
committerMarc Alexander <admin@m-a-styles.de>2018-09-16 16:06:00 +0200
commit5edb33036654fad4df63507f00934b0d078e2756 (patch)
tree40fdbbbf41e4852099c74a85b2f423e66fedcf59 /phpBB/phpbb/cache/driver
parent33268e5a72b3858c09d97bb696a21911ec139815 (diff)
downloadforums-5edb33036654fad4df63507f00934b0d078e2756.tar
forums-5edb33036654fad4df63507f00934b0d078e2756.tar.gz
forums-5edb33036654fad4df63507f00934b0d078e2756.tar.bz2
forums-5edb33036654fad4df63507f00934b0d078e2756.tar.xz
forums-5edb33036654fad4df63507f00934b0d078e2756.zip
[ticket/15726] Implement selective purge in APCu
fix indentation of comment PHPBB3-15726
Diffstat (limited to 'phpBB/phpbb/cache/driver')
-rw-r--r--phpBB/phpbb/cache/driver/apcu.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/phpbb/cache/driver/apcu.php b/phpBB/phpbb/cache/driver/apcu.php
index 4b06fdb002..c96cf0de57 100644
--- a/phpBB/phpbb/cache/driver/apcu.php
+++ b/phpBB/phpbb/cache/driver/apcu.php
@@ -25,10 +25,10 @@ class apcu extends \phpbb\cache\driver\memory
*/
function purge()
{
- /*
- * Use an iterator to selectively delete our cache entries without disturbing
- * any other cache users (e.g. other phpBB boards hosted on this server)
- */
+ /*
+ * 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 . '#'));
parent::purge();