Skip Menu |

This queue is for tickets about the Memoize CPAN distribution.

Report information
The Basics
Id: 91928
Status: new
Priority: 0/
Queue: Memoize

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 1.03
Fixed in: (no value)



Subject: Documentation: wrong MLDBM usage
The documentation has the following line as an example how to use MLDBM: tie my %cache => 'MLDBM', 'DB_File', $filename, ...; This is not correct: the DBM implementation cannot be specified like this. It should rather be local $MLDBM::UseDB = 'DB_File'; tie my %cache => 'MLDBM', $filename, ...; Regards, Slaven