Stamp_Guy has asked for the wisdom of the Perl Monks concerning the following question:
P.S. For further info on what I've done to test this, please /msg me in the CB. Thanks!
#!/usr/bin/perl -w use strict; my %PL; dbmopen(%PL, "pl", 0777) || die "Can't create DBM: $!"; my $count = 0; while ($count <= 10000) { $PL{$count} = "$count"; $count++; } print "Content-type: text/html\n\n"; print scalar(keys %PL), '/', $count, "\n"; dbmclose(%PL);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: A major problem/bug with DBM drivers on Windows machines
by chromatic (Archbishop) on Jul 04, 2001 at 03:55 UTC | |
|
Re: A major problem/bug with DBM drivers on Windows machines
by Albannach (Monsignor) on Jul 04, 2001 at 07:15 UTC | |
by petdance (Parson) on Jul 04, 2001 at 20:34 UTC | |
|
Re: A major problem/bug with DBM drivers on Windows machines
by jmcnamara (Monsignor) on Jul 04, 2001 at 14:25 UTC | |
|
Re: A major problem/bug with DBM drivers on Windows machines
by Stamp_Guy (Monk) on Jul 04, 2001 at 03:29 UTC | |
|
Re: A major problem/bug with DBM drivers on Windows machines
by coolmichael (Deacon) on Jul 04, 2001 at 04:58 UTC | |
|
Re: A major problem/bug with DBM drivers on Windows machines
by myocom (Deacon) on Jul 04, 2001 at 04:14 UTC |