Use apcu_clear_cache

This commit is contained in:
slawkens
2026-01-30 23:09:06 +01:00
parent 347ad40da1
commit 6715a83d03

View File

@@ -1175,6 +1175,10 @@ function clearCache()
if ($cache->fetch('last_kills', $tmp)) {
$cache->delete('last_kills');
}
if (function_exists('apcu_clear_cache')) {
apcu_clear_cache();
}
}
deleteDirectory(CACHE . 'signatures', ['index.html'], true);