Update LruCache size estimate on clear

pull/1828/head
Erik Johnston 2017-01-18 14:55:23 +00:00
parent ae7b4da4cc
commit c430111d0e
1 changed files with 2 additions and 0 deletions

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):