From f91723d9e5b3880122bafc365411a4ff6f5bbda1 Mon Sep 17 00:00:00 2001 From: Dag Date: Wed, 19 Jul 2023 05:18:26 +0200 Subject: [PATCH] fix(memcached): do not flush entire cache, oops (#3551) --- caches/MemcachedCache.php | 1 - 1 file changed, 1 deletion(-) diff --git a/caches/MemcachedCache.php b/caches/MemcachedCache.php index afc654ea..dcb572c7 100644 --- a/caches/MemcachedCache.php +++ b/caches/MemcachedCache.php @@ -84,7 +84,6 @@ class MemcachedCache implements CacheInterface public function purgeCache(int $timeout = 86400): void { - $this->conn->flush(); // Note: does not purges cache right now // Just sets cache expiration and leave cache purging for memcached itself $this->expiration = $timeout;