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