Most of these non- mod-perl centric questions can be answered faster
with a lookup on perlmonks.org
oddly though, this list is bouncing today.
anyways, a quick search on gdbm on perlmonks likes to this node:
http://perlmonks.org/?node_id=405754
which links to this page from the camel book:
http://www.mamiyami.com/document/perl_cookbook_2nd_edition/
0596003137_perlckbk2-chp-14-intro.html
note thats kind of old
personally, whenever i need to use a dblib, i use bekeley db
http://sleepycat.com/
http://search.cpan.org/~pmqs/BerkeleyDB-0.27/
http://search.cpan.org/~pmqs/DB_File-1.814/
DB_File.pm#Using_DB_File_with_Berkeley_DB_version_2_or_greater
I think some version of bdb comes on rhel
On Feb 23, 2006, at 11:21 AM, Ronald J Kimball wrote:
On Thu, Feb 23, 2006 at 10:27:35AM -0500, Mark Galbreath wrote:
looks way cool - thx Chris. Does libgdbm come with perl distros? I
notice the man page is already on my RH Enterprise 4 client. The
reason
I ask is that it is very painful to get the government to change
anything
on a server without lengthy and exhaustive QA. I'd like to start
using
stuff like this before 2010. :-)
You don't have to use gdbm. You can use whatever library you've
been using
with dbmopen().
If you do have gdbm, GDBM_File would be a good choice. Other options
include DB_File, SDBM_File, and NDBM_File.
AnyDBM_File has a comparison of the different libraries.
Ronald