summary refs log tree commit diff
path: root/synapse/util
diff options
context:
space:
mode:
authorPatrick Cloke <patrickc@matrix.org>2023-09-06 13:08:22 -0400
committerPatrick Cloke <patrickc@matrix.org>2023-09-06 13:08:22 -0400
commit32fb264120f36bdcd47598457d8a2eb10a3f7a5e (patch)
treeb256b054994eda9e63e27cf1c7b4fd1dab01af37 /synapse/util
parentApply missed suggestions from the review of #16090. (#16263) (diff)
parentAdd back newsfile from #16258. (diff)
downloadsynapse-32fb264120f36bdcd47598457d8a2eb10a3f7a5e.tar.xz
Merge remote-tracking branch 'origin/release-v1.92' into develop
Diffstat (limited to 'synapse/util')
-rw-r--r--synapse/util/caches/expiringcache.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/synapse/util/caches/expiringcache.py b/synapse/util/caches/expiringcache.py
index 9a3e10ddee..01ad02af67 100644
--- a/synapse/util/caches/expiringcache.py
+++ b/synapse/util/caches/expiringcache.py
@@ -140,20 +140,6 @@ class ExpiringCache(Generic[KT, VT]):
 
         return value.value
 
-    def invalidate(self, key: KT) -> None:
-        """
-        Remove the given key from the cache.
-        """
-
-        value = self._cache.pop(key, None)
-        if value:
-            if self.iterable:
-                self.metrics.inc_evictions(
-                    EvictionReason.invalidation, len(value.value)
-                )
-            else:
-                self.metrics.inc_evictions(EvictionReason.invalidation)
-
     def __contains__(self, key: KT) -> bool:
         return key in self._cache
 
@@ -207,14 +193,6 @@ class ExpiringCache(Generic[KT, VT]):
             len(self),
         )
 
-    def invalidate_all(self) -> None:
-        """
-        Remove all items from the cache.
-        """
-        keys = set(self._cache.keys())
-        for key in keys:
-            self._cache.pop(key)
-
     def __len__(self) -> int:
         if self.iterable:
             return sum(len(entry.value) for entry in self._cache.values())