in reply to Re: Tie::File problem
in thread Tie::File problem
Thankfully, that is an option, so I'll give it a try.
Thanx chiefs
follow up:
It worked great :) This snippet doesn't chew hardly any memory. Thanx again.
#!/usr/bin/perl use Tie::File; my @item; my $dbuncheck = tie (@item,'Tie::File','test',memory => '100000') or d +ie $!; for (1..30000) { unshift @item,'stuff' x 40; }
|
---|