How to Install and Uninstall perl-MLDBM Package on openSuSE Tumbleweed

Last updated: June 15,2024

1. Install "perl-MLDBM" package

Please follow the step by step instructions below to install perl-MLDBM on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-MLDBM

2. Uninstall "perl-MLDBM" package

Learn how to uninstall perl-MLDBM on openSuSE Tumbleweed:

$ sudo zypper remove perl-MLDBM

3. Information about the perl-MLDBM package on openSuSE Tumbleweed

Information for package perl-MLDBM:
-----------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-MLDBM
Version : 2.05-5.31
Arch : noarch
Vendor : openSUSE
Installed Size : 28.5 KiB
Installed : No
Status : not installed
Source package : perl-MLDBM-2.05-5.31.src
Upstream URL : http://search.cpan.org/dist/MLDBM/
Summary : store multi-level Perl hash structure in single level tied hash
Description :
This module can serve as a transparent interface to any TIEHASH package
that is required to store arbitrary perl data, including nested references.
Thus, this module can be used for storing references and other arbitrary
data within DBM databases.
It works by serializing the references in the hash into a single string. In
the underlying TIEHASH package (usually a DBM database), it is this string
that gets stored. When the value is fetched again, the string is
deserialized to reconstruct the data structure into memory.
For historical and practical reasons, it requires the *Data::Dumper*
package, available at any CPAN site. *Data::Dumper* gives you really
nice-looking dumps of your data structures, in case you wish to look at
them on the screen, and it was the only serializing engine before version
2.00. However, as of version 2.00, you can use any of *Data::Dumper*,
*FreezeThaw* or *Storable* to perform the underlying serialization, as
hinted at by the the SYNOPSIS manpage overview above. Using *Storable* is
usually much faster than the other methods.
See the the BUGS manpage section for important limitations.