diff options
author | Erik Johnston <erik@matrix.org> | 2016-03-01 11:15:56 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-03-01 11:15:56 +0000 |
commit | 742ec37ca309cd9b6baddc553b70d7e4643937d7 (patch) | |
tree | cd0f1fbec82439b580c1416dcfe266733c83e884 /synapse/util | |
parent | Merge pull request #607 from matrix-org/dbkr/send_inviter_member_event (diff) | |
parent | Reraise exception (diff) | |
download | synapse-742ec37ca309cd9b6baddc553b70d7e4643937d7.tar.xz |
Merge pull request #611 from matrix-org/erikj/expiring_cache_size
Report size of ExpiringCache
Diffstat (limited to 'synapse/util')
-rw-r--r-- | synapse/util/caches/expiringcache.py | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/synapse/util/caches/expiringcache.py b/synapse/util/caches/expiringcache.py index 62cae99649..e863a8f8a9 100644 --- a/synapse/util/caches/expiringcache.py +++ b/synapse/util/caches/expiringcache.py @@ -13,6 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +from synapse.util.caches import cache_counter, caches_by_name + import logging @@ -47,6 +49,8 @@ class ExpiringCache(object): self._cache = {} + caches_by_name[cache_name] = self._cache + def start(self): if not self._expiry_ms: # Don't bother starting the loop if things never expire @@ -72,7 +76,12 @@ class ExpiringCache(object): self._cache.pop(k) def __getitem__(self, key): - entry = self._cache[key] + try: + entry = self._cache[key] + cache_counter.inc_hits(self._cache_name) + except KeyError: + cache_counter.inc_misses(self._cache_name) + raise if self._reset_expiry_on_get: entry.time = self._clock.time_msec() @@ -105,9 +114,12 @@ class ExpiringCache(object): logger.debug( "[%s] _prune_cache before: %d, after len: %d", - self._cache_name, begin_length, len(self._cache.keys()) + self._cache_name, begin_length, len(self._cache) ) + def __len__(self): + return len(self._cache) + class _CacheEntry(object): def __init__(self, time, value): |