1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-19 23:20:22 +01:00

[ticket/15726] Implement selective purge in APCu cache driver

Fix whitespace

PHPBB3-15726
This commit is contained in:
v12mike 2018-07-26 06:09:02 +01:00 committed by Marc Alexander
parent bf9af92220
commit 7f1f64b1dc
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -25,9 +25,9 @@ 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 . '#'));