How to Install and Uninstall perl-IPC-SharedCache.noarch Package on Oracle Linux 9

Last updated: May 21,2024

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

This guide let you learn how to install perl-IPC-SharedCache.noarch on Oracle Linux 9

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

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

Here is a brief guide to show you how to uninstall perl-IPC-SharedCache.noarch on Oracle Linux 9:

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

3. Information about the perl-IPC-SharedCache.noarch package on Oracle Linux 9

Last metadata expiration check: 0:09:24 ago on Thu Feb 15 07:50:05 2024.
Available Packages
Name : perl-IPC-SharedCache
Version : 1.3
Release : 46.el9
Architecture : noarch
Size : 34 k
Source : perl-IPC-SharedCache-1.3-46.el9.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.