aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/cache
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/cache')
-rw-r--r--phpBB/phpbb/cache/driver/apcu.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/phpBB/phpbb/cache/driver/apcu.php b/phpBB/phpbb/cache/driver/apcu.php
index 754fb1fce2..e40d5a376c 100644
--- a/phpBB/phpbb/cache/driver/apcu.php
+++ b/phpBB/phpbb/cache/driver/apcu.php
@@ -25,9 +25,10 @@ class apcu extends \phpbb\cache\driver\memory
*/
function purge()
{
- /* use an iterator to selectively clear our cache entries without
- disturbing any other cache users
- (e.g. other phpBB boards hosted on this server) */
+ /*
+ Use an iterator to selectively clear 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();