How To Install libhiredis-dbg on Debian 9

In this tutorial we learn how to install libhiredis-dbg on Debian 9. libhiredis-dbg is minimalistic C client library for Redis (debug)

Introduction

In this tutorial we learn how to install libhiredis-dbg on Debian 9.

What is libhiredis-dbg

libhiredis-dbg 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.

This package provides the debugging symbols for hiredis.

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

Install libhiredis-dbg Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libhiredis-dbg

Install libhiredis-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libhiredis-dbg

Install libhiredis-dbg 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 libhiredis-dbg using aptitude by running the following command:

sudo aptitude -y install libhiredis-dbg

How To Uninstall libhiredis-dbg on Debian 9

To uninstall only the libhiredis-dbg package we can use the following command:

sudo apt-get remove libhiredis-dbg

Uninstall libhiredis-dbg And Its Dependencies

To uninstall libhiredis-dbg and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove libhiredis-dbg

Remove libhiredis-dbg Configurations and Data

To remove libhiredis-dbg configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge libhiredis-dbg

Remove libhiredis-dbg configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libhiredis-dbg

Dependencies

libhiredis-dbg have the following dependencies:

References

Summary

In this tutorial we learn how to install libhiredis-dbg package on Debian 9 using different package management tools: apt, apt-get and aptitude.