Skip to content

Commit

Permalink
version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ultrabug committed Nov 21, 2017
1 parent b108bd5 commit 1aa0ec9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -13,11 +13,11 @@ This full featured implementation offers:

- a lot of **convenient methods** to use your consistent hash ring in real world applications.
- simple **integration** with other libs such as memcache through monkey patching.
- a full `ketama <https://github.com/RJ/ketama>`_ compatibility if you need to use it.
- a full `ketama <https://github.com/RJ/ketama>`_ compatibility if you need to use it (see important mention below).
- all the missing functions in the libketama C python binding (which is not even available on pypi) for ketama users.
- possibility to **use your own weight and hash functions** if you don't care about the ketama compatibility.
- **instance-oriented usage** so you can use your consistent hash ring object directly in your code (see advanced usage).
- native **pypy support**.
- native **pypy support**, since this is a pure python library.
- tests of implementation, key distribution and ketama compatibility.

Per node weight is also supported and will affect the nodes distribution on the ring.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -56,7 +56,7 @@ def run_tests(self):
'Topic :: Software Development :: Libraries :: Python Modules',
],
cmdclass={'test': PyTest},
description='Consistent hashing implementation compatible with the ketama hash ring.',
description='Full featured consistent hashing python library compatible with ketama.',
download_url='https://github.com/ultrabug/uhashring/tags',
include_package_data=True,
install_requires=[],
Expand All @@ -67,5 +67,5 @@ def run_tests(self):
platforms='any',
tests_require=['python-memcached', 'pytest'],
url='https://github.com/ultrabug/uhashring',
version='0.8',
version='1.0',
zip_safe=True)

0 comments on commit 1aa0ec9

Please sign in to comment.