How to Install and Uninstall perl-Memoize.noarch Package on Fedora 34

Last updated: October 05,2024

1. Install "perl-Memoize.noarch" package

Here is a brief guide to show you how to install perl-Memoize.noarch on Fedora 34

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

2. Uninstall "perl-Memoize.noarch" package

Please follow the instructions below to uninstall perl-Memoize.noarch on Fedora 34:

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

3. Information about the perl-Memoize.noarch package on Fedora 34

Last metadata expiration check: 2:22:07 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : perl-Memoize
Version : 1.03
Release : 477.fc34
Architecture : noarch
Size : 67 k
Source : perl-5.32.1-477.fc34.src.rpm
Repository : updates
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.