mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-01-19 05:41:29 -05:00
Add setdefault key to ExpiringCache
This commit is contained in:
parent
45d173a59a
commit
3545e17f43
@ -100,6 +100,13 @@ class ExpiringCache(object):
|
|||||||
except KeyError:
|
except KeyError:
|
||||||
return default
|
return default
|
||||||
|
|
||||||
|
def setdefault(self, key, value):
|
||||||
|
try:
|
||||||
|
return self[key]
|
||||||
|
except KeyError:
|
||||||
|
self[key] = value
|
||||||
|
return value
|
||||||
|
|
||||||
def _prune_cache(self):
|
def _prune_cache(self):
|
||||||
if not self._expiry_ms:
|
if not self._expiry_ms:
|
||||||
# zero expiry time means don't expire. This should never get called
|
# zero expiry time means don't expire. This should never get called
|
||||||
|
Loading…
Reference in New Issue
Block a user