Path: usenet.cise.ufl.edu!huron.eel.ufl.edu!usenet.eel.ufl.edu!arclight.uoregon.edu!news-out.internetmci.com!newsfeed.internetmci.com!144.212.95.13!nntprelay.mathworks.com!news.mathworks.com!uunet!in2.uu.net!news.neta.com!not-for-mail From: gsar@engin.umich.edu (Gurusamy Sarathy) Newsgroups: comp.lang.perl.announce,comp.lang.perl.modules Subject: MLDBM version 2.00 released Followup-To: comp.lang.perl.modules Date: 2 Jun 1998 18:42:50 GMT Organization: University of Michigan, Ann Arbor Lines: 77 Approved: merlyn@stonehenge.com (comp.lang.perl.announce) Message-ID: <6l1h3a$q2c$1@news.neta.com> NNTP-Posting-Host: gadget.cscaper.com X-Disclaimer: The "Approved" header verifies header information for article transmission and does not imply approval of content. Xref: usenet.cise.ufl.edu comp.lang.perl.announce:68 comp.lang.perl.modules:1940 Hi. There's a new version of MLDBM on CPAN that now supports other modules capable of data serialization besides Data::Dumper. http://www.perl.com/CPAN/authors/id/GSAR/MLDBM-2.00.tar.gz The README from the distribution is attached. Enjoy, - Sarathy. gsar@umich.edu ---------------------------------------------------------------------- This is the README file for MLDBM, the Perl module that can be used to store multidimensional hash structures in tied hashes (including DBM files). This is version 2.00. It requires: Perl Version 5.004 or later. The Data::Dumper package from CPAN, version 2.08 or later. If you were able to install Data::Dumper with its XSUB extension, MLDBM will perform significantly faster. Optionally, you can also switch to other serializing packages such as FreezeThaw and Storable. Storable provides much greater speeds, and the performance of FreezeThaw is comparable to Data::Dumper. Support for this was added by Raphael Manfredi. Many thanks! See the embedded documentation in the module for more details. As always, feedback is very welcome. - Sarathy. gsar@umich.edu ---------------------------------------------------------------------- INSTALLATION You must install the Data::Dumper package first. Optionally, you may want to install one or more of Storable and FreezeThaw as well. (Storable-0.5@8 and FreezeThaw-0.3 have been tested, earlier versions may not work.) >From the MLDBM source directory: perl Makefile.PL make test make install is all that will be needed. ---------------------------------------------------------------------- CHANGES 2.00 (10 May 1998) Added support for multiple serializing interfaces. (courtesy Raphael Manfredi ) Split serializer wrappers into multiple files, and regularized the interface some. Underlying TIEHASH object and serializer can now be set at runtime (with care). Miscellaneous pod tweaks. 1.25 (7 December 1997) Add RemoveTaint flag. require 5.004. require Data::Dumper 2.08. .