How To Install python-dogpile-cache on CentOS 7

In this tutorial we learn how to install python-dogpile-cache on CentOS 7. python-dogpile-cache is A caching front-end based on the Dogpile lock

Introduction

In this tutorial we learn how to install python-dogpile-cache on CentOS 7.

What is python-dogpile-cache

A caching API built around the concept of a “dogpile lock”, which allows continued access to an expiring data value while a single thread generates a new value. dogpile.cache builds on the dogpile.core <http implements the idea of "allow one creator to write while others read" in the abstract. Overall, dogpile.cache is intended as a replacement to the Beaker <http system, the internals of which are written by the same author. All the ideas of Beaker which “work” are re-implemented in dogpile.cache in a more efficient and succinct manner, and all the cruft (Beaker’s internals were first written in 2005) relegated to the trash heap.

We can use yum or dnf to install python-dogpile-cache on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install python-dogpile-cache.

Install python-dogpile-cache on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install python-dogpile-cache using yum by running the following command:

sudo yum -y install python-dogpile-cache

Install python-dogpile-cache on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install python-dogpile-cache using dnf by running the following command:

sudo dnf -y install python-dogpile-cache

How To Uninstall python-dogpile-cache on CentOS 7

To uninstall only the python-dogpile-cache package we can use the following command:

sudo dnf remove python-dogpile-cache

References

Summary

In this tutorial we learn how to install python-dogpile-cache on CentOS 7 using yum and dnf.