mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-02-07 22:45:20 -05: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…
x
Reference in New Issue
Block a user