forked from MirrorHub/synapse
Docs for treecache
This commit is contained in:
parent
42eae4634f
commit
eaa836e8ca
1 changed files with 5 additions and 0 deletions
|
@ -2,6 +2,11 @@ SENTINEL = object()
|
|||
|
||||
|
||||
class TreeCache(object):
|
||||
"""
|
||||
Tree-based backing store for LruCache. Allows subtrees of data to be deleted
|
||||
efficiently.
|
||||
Keys must be tuples.
|
||||
"""
|
||||
def __init__(self):
|
||||
self.root = {}
|
||||
|
||||
|
|
Loading…
Reference in a new issue