How to Install and Uninstall perl-Memoize.noarch Package on CentOS Stream 9

Last updated: October 07,2024

1. Install "perl-Memoize.noarch" package

This guide let you learn how to install perl-Memoize.noarch on CentOS Stream 9

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

2. Uninstall "perl-Memoize.noarch" package

This is a short guide on how to uninstall perl-Memoize.noarch on CentOS Stream 9:

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

3. Information about the perl-Memoize.noarch package on CentOS Stream 9

Last metadata expiration check: 0:04:48 ago on Sat Mar 16 16:03:45 2024.
Available Packages
Name : perl-Memoize
Version : 1.03
Release : 481.el9
Architecture : noarch
Size : 56 k
Source : perl-5.32.1-481.el9.src.rpm
Repository : appstream
Summary : Transparently speed up functions by caching return values
URL : https://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.