ExpiringCache: purge every 1/2 interval

This commit is contained in:
Erik Johnston 2015-02-17 15:44:26 +00:00
parent 8b919c00f3
commit e7e20417ca

View File

@ -55,7 +55,7 @@ class ExpiringCache(object):
def f():
self._prune_cache()
self._clock.looping_call(f, self._expiry_ms)
self._clock.looping_call(f, self._expiry_ms/2)
def __setitem__(self, key, value):
now = self._clock.time_msec()