mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
docs
This commit is contained in:
parent
d552861346
commit
cd80019eec
@ -28,7 +28,11 @@ def enumerate_leaves(node, depth):
|
|||||||
|
|
||||||
|
|
||||||
class LruCache(object):
|
class LruCache(object):
|
||||||
"""Least-recently-used cache."""
|
"""
|
||||||
|
Least-recently-used cache.
|
||||||
|
Supports del_multi only if cache_type=TreeCache
|
||||||
|
If cache_type=TreeCache, all keys must be tuples.
|
||||||
|
"""
|
||||||
def __init__(self, max_size, keylen=1, cache_type=dict):
|
def __init__(self, max_size, keylen=1, cache_type=dict):
|
||||||
cache = cache_type()
|
cache = cache_type()
|
||||||
self.size = 0
|
self.size = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user