devnul has asked for the wisdom of the Perl Monks concerning the following question:
use strict; use CDB_File; my $cdb_file = 'test.cdb'; my $cdb = CDB_File->new($cdb_file, "$cdb_file.tmp") or die "Unable to +create CDB file: $!"; while(1) { $cdb->insert('leak', 1); }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: CDB_File memory leak
by runrig (Abbot) on Apr 29, 2009 at 19:56 UTC | |
by devnul (Monk) on Apr 29, 2009 at 20:13 UTC | |
Re: CDB_File memory leak
by perrin (Chancellor) on Apr 29, 2009 at 20:36 UTC | |
by devnul (Monk) on Apr 30, 2009 at 01:23 UTC | |
by perrin (Chancellor) on Apr 30, 2009 at 03:27 UTC |