Browse Source

[perf] greatly increase hashmap performance

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
andrei 8 years ago
parent
commit
566130d1b3
  1. 16
      disco/util/hashmap.py
  2. 40
      tests/util/hashmap.py

16
disco/util/hashmap.py

@ -1,21 +1,17 @@
import six import six
from six.moves import filter, map, UserDict from six.moves import filter, map
from collections import defaultdict from collections import defaultdict
class HashMap(UserDict): class HashMap(dict):
__slots__ = ()
def iter(self): def iter(self):
return iter(self.data) return iter(self)
def items(self): def items(self):
return six.iteritems(self.data) return six.iteritems(self)
def keys(self):
return six.iterkeys(self.data)
def values(self):
return six.itervalues(self.data)
def find(self, predicate): def find(self, predicate):
if not callable(predicate): if not callable(predicate):

40
tests/util/hashmap.py

@ -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…
Cancel
Save