Python port of PHP Flexihash
Project description
flexihash-py
A python port of https://github.com/pda/flexihash , aiming for 1:1 compatibility
Usage Example
import flexihash
hash = flexihash.Flexihash()
# bulk add
hash.addTargets(['cache-1', 'cache-2', 'cache-3'])
# simple lookup
hash.lookup('object-a') # "cache-1"
hash.lookup('object-b') # "cache-2"
# add and remove
hash \
.addTarget('cache-4') \
.removeTarget('cache-1')
# lookup with next-best fallback (for redundant writes)
hash.lookupList('object', 2) # ["cache-2", "cache-4"]
# remove cache-2, expect object to hash to cache-4
hash.removeTarget('cache-2')
hash.lookup('object') # "cache-4"
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
Flexihash-1.5.1.tar.gz
(2.6 kB
view hashes)
Built Distribution
Close
Hashes for Flexihash-1.5.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 213d92aa49dc84a74e5474a90a53f5b8a9138c6819dcdcc989cefa128e397994 |
|
MD5 | 0771ea8c96e5f162f87c4cc884795e50 |
|
BLAKE2b-256 | d9998fcdf7422dc5e2091929f449307b83abbbb7457db5f59dac696be45c2492 |