How To Install python3-uhashring on Debian 12

Learn how to install python3-uhashring on Debian 12 with this tutorial. python3-uhashring is full featured consistent hashing python library compatible with ketama

Introduction

In this tutorial we learn how to install python3-uhashring on Debian 12.

What is python3-uhashring

python3-uhashring is:

Uhashring implements consistent hashing in pure Python.

Consistent hashing is mostly used on distributed systems/caches/databases as this avoid the total reshuffling of your key-node mappings when adding or removing a node in your ring (called continuum on libketama). More information and det ails about this can be found in the literature section.

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 compatibility if you need to use it.
  • 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).
  • tests of implementation, key distribution and ketama compatibility.

Per node weight is also supported and will affect the nodes distribution on the ring.

There are three methods to install python3-uhashring on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install python3-uhashring Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install python3-uhashring using apt-get by running the following command:

sudo apt-get -y install python3-uhashring

Install python3-uhashring Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python3-uhashring using apt by running the following command:

sudo apt -y install python3-uhashring

Install python3-uhashring Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install python3-uhashring using aptitude by running the following command:

sudo aptitude -y install python3-uhashring

How To Uninstall python3-uhashring on Debian 12

To uninstall only the python3-uhashring package we can use the following command:

sudo apt-get remove python3-uhashring

Uninstall python3-uhashring And Its Dependencies

To uninstall python3-uhashring and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove python3-uhashring

Remove python3-uhashring Configurations and Data

To remove python3-uhashring configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge python3-uhashring

Remove python3-uhashring configuration, data, and all of its dependencies

We can use the following command to remove python3-uhashring configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python3-uhashring

Dependencies

python3-uhashring have the following dependencies:

References

Summary

In this tutorial we learn how to install python3-uhashring package on Debian 12 using different package management tools: apt, apt-get and aptitude.