Skip to main content

A replacement for dict using hopscotch hashing

Project description

py-hopscotch-dict

Travis Codecov Python Versions Package Version License

py-hopscotch-dict is a package that contains a replacement for the standard Python dict which implements the concepts of hopscotch hashing, as explained in the foundational paper.

Hopscotch hashing provides a number of benefits over the methods used in the standard dict implementation, most notably that additions, deletions and lookups have an expected O(1) runtime.

py-hopscotch-dict is implemented to replicate a Python 3.6-style dict, and as such brings additional effects to Python 2.7 beyond those of hopscotch hashing.

py-hopscotch-dict has not been tested in a concurrent environment and thusly cannot be guaranteed to function correctly in conjunction with multi-threading, across multiple processes or in an asynchronous environment

Usage

>>> from py_hopscotch_dict import HopscotchDict
>>> d = HopscotchDict()
>>> d["test"] = True
>>> d
HopscotchDict({'test': True})

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py-hopscotch-dict-1.0.1.tar.gz (15.9 kB view hashes)

Uploaded Source

Built Distribution

py_hopscotch_dict-1.0.1-py2.py3-none-any.whl (13.0 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page