0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-22 19:19:02 +02:00

Merge pull request #1828 from matrix-org/erikj/iterable_cache_size

Update LruCache size estimate on clear
This commit is contained in:
Erik Johnston 2017-01-18 14:57:54 +00:00 committed by GitHub
commit 841c228533

View file

@ -189,6 +189,8 @@ class LruCache(object):
for cb in node.callbacks:
cb()
cache.clear()
if size_callback:
cached_cache_len[0] = 0
@synchronized
def cache_contains(key):