Metadata-Version: 1.1
Name: guavahash
Version: 0.3
Summary: Google's Guava consistent hashing implementation
Home-page: https://github.com/igorcoding/guavahash
Author: igorcoding
Author-email: igorcoding@gmail.com
License: MIT License
Download-URL: https://github.com/igorcoding/guavahash/tarball/v0.3
Description: Google's Guava consistent hashing implementation
              
              
              Assign to `input` a "bucket" in the range `[0, buckets)`, in a uniform manner
              that minimizes the need for remapping as `buckets` grows.
              That is, `consistentHash(h, n)` equals:
        
              * `n - 1`, with approximate probability `1/n`;
              * `consistentHash(h, n - 1)`, otherwise (probability `1 - 1/n`).
        
              See the [wikipedia article on consistent hashing](http://en.wikipedia.org/wiki/Consistent_hashing)
              for more information.
              
Keywords: guava consistent hashing hash digest
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
