From a4605c29090601fbe093bd9ceb0b728a8e950363 Mon Sep 17 00:00:00 2001 From: v12mike Date: Thu, 26 Jul 2018 17:24:42 +0200 Subject: [PATCH] [ticket/15726] Implement selective purge in APCu cache driver Edit comment PHPBB3-15726 --- cache/driver/apcu.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache/driver/apcu.php b/cache/driver/apcu.php index 3a63a97e4..4b06fdb00 100644 --- a/cache/driver/apcu.php +++ b/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 . '#'));