How to Install and Uninstall python3-dogpile-cache.noarch Package on Fedora 35

Last updated: October 05,2024

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

Please follow the instructions below to install python3-dogpile-cache.noarch on Fedora 35

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

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

This tutorial shows how to uninstall python3-dogpile-cache.noarch on Fedora 35:

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

3. Information about the python3-dogpile-cache.noarch package on Fedora 35

Last metadata expiration check: 2:25:08 ago on Wed Sep 7 08:25:01 2022.
Available Packages
Name : python3-dogpile-cache
Version : 1.1.3
Release : 2.fc35
Architecture : noarch
Size : 87 k
Source : python-dogpile-cache-1.1.3-2.fc35.src.rpm
Repository : fedora
Summary : A caching front-end based on the Dogpile lock
URL : https://pypi.io/project/dogpile.cache
License : MIT
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.