How To Install libhiredis0.14 on Debian 11

In this tutorial we learn how to install libhiredis0.14 on Debian 11. libhiredis0.14 is minimalistic C client library for Redis

Introduction

In this tutorial we learn how to install libhiredis0.14 on Debian 11.

What is libhiredis0.14

libhiredis0.14 is:

Hiredis is a minimalistic C client library for the Redis database. It is minimalistic because it just adds minimal support for the protocol, but at the same time it uses an high level printf-alike API in order to make it much higher level than otherwise suggested by its minimal code base and the lack of explicit bindings for every Redis command.

Apart from supporting sending commands and receiving replies, it comes with a reply parser that is decoupled from the I/O layer. It is a stream parser designed for easy reusability, which can for instance be used in higher level language bindings for efficient reply parsing.

Hiredis only supports the binary-safe Redis protocol, so you can use it with any Redis version >= 1.2.0.

The library comes with multiple APIs. There is the synchronous API, the asynchronous API and the reply parsing API.

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

Install libhiredis0.14 Using apt-get

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

sudo apt-get update

After updating apt database, We can install libhiredis0.14 using apt-get by running the following command:

sudo apt-get -y install libhiredis0.14

Install libhiredis0.14 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libhiredis0.14 using apt by running the following command:

sudo apt -y install libhiredis0.14

Install libhiredis0.14 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 libhiredis0.14 using aptitude by running the following command:

sudo aptitude -y install libhiredis0.14

How To Uninstall libhiredis0.14 on Debian 11

To uninstall only the libhiredis0.14 package we can use the following command:

sudo apt-get remove libhiredis0.14

Uninstall libhiredis0.14 And Its Dependencies

To uninstall libhiredis0.14 and its dependencies that are no longer needed by Debian 11, we can use the command below:

sudo apt-get -y autoremove libhiredis0.14

Remove libhiredis0.14 Configurations and Data

To remove libhiredis0.14 configuration and data from Debian 11 we can use the following command:

sudo apt-get -y purge libhiredis0.14

Remove libhiredis0.14 configuration, data, and all of its dependencies

We can use the following command to remove libhiredis0.14 configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libhiredis0.14

Dependencies

libhiredis0.14 have the following dependencies:

References

Summary

In this tutorial we learn how to install libhiredis0.14 package on Debian 11 using different package management tools: apt, apt-get and aptitude.