How to Install and Uninstall perl-IPC-SharedCache.noarch Package on CentOS 8 / RHEL 8

Last updated: April 30,2024

1. Install "perl-IPC-SharedCache.noarch" package

Here is a brief guide to show you how to install perl-IPC-SharedCache.noarch on CentOS 8 / RHEL 8

$ sudo dnf update $ sudo dnf install perl-IPC-SharedCache.noarch

2. Uninstall "perl-IPC-SharedCache.noarch" package

Please follow the steps below to uninstall perl-IPC-SharedCache.noarch on CentOS 8 / RHEL 8:

$ sudo dnf remove perl-IPC-SharedCache.noarch $ sudo dnf autoremove

3. Information about the perl-IPC-SharedCache.noarch package on CentOS 8 / RHEL 8

Last metadata expiration check: 1 day, 6:40:21 ago on Sun May 9 13:03:46 2021.
Available Packages
Name : perl-IPC-SharedCache
Version : 1.3
Release : 40.el8
Architecture : noarch
Size : 38 k
Source : perl-IPC-SharedCache-1.3-40.el8.src.rpm
Repository : epel
Summary : Perl module to manage a cache in SysV IPC shared memory
URL : https://metacpan.org/release/IPC-SharedCache
License : GPLv2+
Description : This module provides a shared memory cache accessed as a tied hash.
: Shared memory is an area of memory that is available to all processes.
: It is accessed by choosing a key, the ipc_key argument to tie. Every
: process that accesses shared memory with the same key gets access to
: the same region of memory. In some ways it resembles a file system,
: but it is not hierarchical and it is resident in memory. This makes
: it harder to use than a filesystem but much faster. The data in
: shared memory persists until the machine is rebooted or it is
: explicitly deleted.