in reply to Re^2: DBM Deep Hash of Hash of Hash of array
in thread DBM Deep Hash of Hash of Hash of array
That may reduce a lot of the RAM and disk usage you're seeing.my $size = $#{ $errordbref ->{$_BranchName}->{$ThingsToPrint}->{url} } +; foreach my $idx ( 0 .. $size ) { my $testurl = $errordbref ->{$_BranchName}->{$ThingsToPrint}->{url +}->[$idx]; print $testurl; }
|
|---|