Browse Source
UserDict was the wrong way to achieve this, modern versions of Python can just subclass dict. This provides an immense performance boost by allowing getitem/setitem calls to be routed directly to the underlying storage within cpython land, instead of having to route through the items MRO and eventually hit __dict__pull/47/head
2 changed files with 46 additions and 10 deletions
@ -0,0 +1,40 @@ |
|||
import pytest |
|||
import random |
|||
|
|||
from disco.util.hashmap import HashMap |
|||
|
|||
|
|||
@pytest.fixture |
|||
def hashmap(): |
|||
return HashMap({i: random.randint(1, 1000000) for i in range(100000)}) |
|||
|
|||
|
|||
def test_hashmap_insert_performance(benchmark): |
|||
def bench_hashmap_insert(hsh): |
|||
hsh[random.randint(1, 100000)] = True |
|||
|
|||
benchmark(bench_hashmap_insert, HashMap()) |
|||
|
|||
|
|||
def test_hashmap_lookup_performance(benchmark, hashmap): |
|||
def bench_hashmap_lookup(): |
|||
assert hashmap[random.randint(1, 10000)] > 0 |
|||
|
|||
benchmark(bench_hashmap_lookup) |
|||
|
|||
|
|||
def test_hashmap_find(hashmap): |
|||
assert len(list(hashmap.find(lambda v: v > 0))) == len(hashmap) |
|||
assert hashmap.find_one(lambda v: v > 0) > 0 |
|||
|
|||
|
|||
def test_hashmap_filter(hashmap): |
|||
for item in list(hashmap.filter(lambda v: v % 2 == 0)): |
|||
assert item % 2 == 0 |
|||
|
|||
|
|||
def test_hashmap_builtins(hashmap): |
|||
for item in hashmap: |
|||
assert item in hashmap |
|||
|
|||
assert hashmap.popitem()[1] > 1 |
Loading…
Reference in new issue