Skip Menu |

This queue is for tickets about the LMDB_File CPAN distribution.

Report information
The Basics
Id: 98821
Status: resolved
Priority: 0/
Queue: LMDB_File

People
Owner: sog [...] msg.com.mx
Requestors: KENTNL [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.05
Fixed in: 0.06



Subject: Can't locate object method "set_max_readers" via package "LMDB::Env"
at LMDB_File.pm line 78

Deleting the "_" between max and readers seems to resolve this problem.
Subject: lmdb.pl
#!/usr/bin/env perl # FILENAME: lmdb.pl # CREATED: 09/12/14 18:04:17 by Kent Fredric (kentnl) <kentfredric@gmail.com> # ABSTRACT: max_readers use strict; use warnings; use utf8; use LMDB_File; use Path::Tiny; my $env = LMDB::Env->new(Path::Tiny->tempdir, { maxreaders => 1 });
El Vie Sep 12 02:07:43 2014, KENTNL escribió: Show quoted text
> at LMDB_File.pm line 78 > > Deleting the "_" between max and readers seems to resolve this problem.
Good catch, just in time. Thanks.