How to Install and Uninstall python2-dogpile-cache.noarch Package on CentOS Stream 8

Last updated: May 18,2024

1. Install "python2-dogpile-cache.noarch" package

Here is a brief guide to show you how to install python2-dogpile-cache.noarch on CentOS Stream 8

$ sudo dnf update $ sudo dnf install python2-dogpile-cache.noarch

2. Uninstall "python2-dogpile-cache.noarch" package

Please follow the guidelines below to uninstall python2-dogpile-cache.noarch on CentOS Stream 8:

$ sudo dnf remove python2-dogpile-cache.noarch $ sudo dnf autoremove

3. Information about the python2-dogpile-cache.noarch package on CentOS Stream 8

Last metadata expiration check: 3:20:13 ago on Sun Feb 25 03:03:59 2024.
Available Packages
Name : python2-dogpile-cache
Version : 0.6.8
Release : 1.el8.1
Architecture : noarch
Size : 77 k
Source : python-dogpile-cache-0.6.8-1.el8.1.src.rpm
Repository : epel
Summary : A caching front-end based on the Dogpile lock
URL : https://pypi.io/project/dogpile.cache
License : BSD
Description : Dogpile consists of two subsystems, one building on top of the other.
:
: dogpile provides the concept of a "dogpile lock", a control structure
: which allows a single thread of execution to be selected as the
: "creator" of some resource, while allowing other threads of execution to
: refer to the previous version of this resource as the creation proceeds;
: if there is no previous version, then those threads block until the
: object is available.
:
: dogpile.cache is a caching API which provides a generic interface to
: caching backends of any variety, and additionally provides API hooks
: which integrate these cache backends with the locking mechanism of
: dogpile.
:
: Overall, dogpile.cache is intended as a replacement to the Beaker
: caching 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.