summary refs log tree commit diff
path: root/synmark/suites/lrucache_evict.py
diff options
context:
space:
mode:
Diffstat (limited to 'synmark/suites/lrucache_evict.py')
-rw-r--r--synmark/suites/lrucache_evict.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/synmark/suites/lrucache_evict.py b/synmark/suites/lrucache_evict.py

index 0ee202ed36..02238c2627 100644 --- a/synmark/suites/lrucache_evict.py +++ b/synmark/suites/lrucache_evict.py
@@ -14,15 +14,16 @@ from pyperf import perf_counter +from synapse.types import ISynapseReactor from synapse.util.caches.lrucache import LruCache -async def main(reactor, loops): +async def main(reactor: ISynapseReactor, loops: int) -> float: """ Benchmark `loops` number of insertions into LruCache where half of them are evicted. """ - cache = LruCache(loops // 2) + cache: LruCache[int, bool] = LruCache(loops // 2) start = perf_counter()