diff options
author | Richard van der Hoff <richard@matrix.org> | 2020-10-14 19:40:53 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-10-14 23:38:14 +0100 |
commit | 7eff59ec91e59140c375b43a6dac05b833ab0051 (patch) | |
tree | a5f570feda94700626c85a9bc3130586a52256d2 /synapse/util/caches/lrucache.py | |
parent | Move additional tasks to the background worker, part 4 (#8513) (diff) | |
download | synapse-7eff59ec91e59140c375b43a6dac05b833ab0051.tar.xz |
Add some more type annotations to Cache
Diffstat (limited to 'synapse/util/caches/lrucache.py')
-rw-r--r-- | synapse/util/caches/lrucache.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/util/caches/lrucache.py b/synapse/util/caches/lrucache.py index 4bc1a67b58..33eae2b7c4 100644 --- a/synapse/util/caches/lrucache.py +++ b/synapse/util/caches/lrucache.py @@ -64,7 +64,8 @@ class LruCache: Args: max_size: The maximum amount of entries the cache can hold - keylen: The length of the tuple used as the cache key + keylen: The length of the tuple used as the cache key. Ignored unless + cache_type is `TreeCache`. cache_type (type): type of underlying cache to be used. Typically one of dict |