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 details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file Flexihash-1.5.1.tar.gz.
File metadata
- Download URL: Flexihash-1.5.1.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b81920efe365561eb35e340057ef3b881e1c8baee1aa822fb6d12c22c2f2bf7
|
|
| MD5 |
33e5f8af1e0953ed69be4130498c52ce
|
|
| BLAKE2b-256 |
5cdbbb9e01981297709bb1d7cb37e2384699c1306fdea35eab223db33043517a
|
File details
Details for the file Flexihash-1.5.1-py3-none-any.whl.
File metadata
- Download URL: Flexihash-1.5.1-py3-none-any.whl
- Upload date:
- Size: 3.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
213d92aa49dc84a74e5474a90a53f5b8a9138c6819dcdcc989cefa128e397994
|
|
| MD5 |
0771ea8c96e5f162f87c4cc884795e50
|
|
| BLAKE2b-256 |
d9998fcdf7422dc5e2091929f449307b83abbbb7457db5f59dac696be45c2492
|