How to Install and Uninstall perl-Memoize.noarch Package on Red Hat Enterprise Linux 8 (RHEL 8)

Last updated: October 07,2024

1. Install "perl-Memoize.noarch" package

This guide covers the steps necessary to install perl-Memoize.noarch on Red Hat Enterprise Linux 8 (RHEL 8)

$ sudo dnf update $ sudo dnf install perl-Memoize.noarch

2. Uninstall "perl-Memoize.noarch" package

Here is a brief guide to show you how to uninstall perl-Memoize.noarch on Red Hat Enterprise Linux 8 (RHEL 8):

$ sudo dnf remove perl-Memoize.noarch $ sudo dnf autoremove

3. Information about the perl-Memoize.noarch package on Red Hat Enterprise Linux 8 (RHEL 8)

Last metadata expiration check: 0:46:40 ago on Mon Feb 26 15:59:38 2024.
Available Packages
Name : perl-Memoize
Version : 1.03
Release : 422.el8
Architecture : noarch
Size : 119 k
Source : perl-5.26.3-422.el8.src.rpm
Repository : ubi-8-appstream-rpms
Summary : Transparently speed up functions by caching return values
URL : http://www.perl.org/
License : GPL+ or Artistic
Description : Memoizing a function makes it faster by trading space for time. It does
: this by caching the return values of the function in a table. If you call
: the function again with the same arguments, memoize jumps in and gives
: you the value out of the table, instead of letting the function compute
: the value all over again.