First I would like to apologize if this question has been asked. It is difficult to search for the answer w/o finding how to create arrays of hashes and hashes of arrays....
I am creating a log analyzer. Each error entry is in the form
timestamp # # human_timestamp errno #
i have created a hash of hashes using a mapping function to do the following:
$logRef->{++$errCnt} =
{
line => $lineNum,
timestamp => $timestamp,
humanStamp => $humanStamp,
errno => $errno,
text => ''
};
Later on i do some analysis where I would like to isolate the entries between line numbers. The analysis entries are stored in hashes as well...
$analysis{++$iteration} =
{
result => $result,
startLine => $startLine,
endLine => $endLine,
errors => undef
};
$analysis{errors} is going to be an array reference. It is filled by doing the following.
foreach my $iteration ( keys %analysis )
{
my @errKeys = grep { $logRef->{$_}{line} >= $analysis{$iteration}{startLine} &&
$logRef->{$_}{line} <= $analysis{$iteration}{endLine} }
keys %$logRef;
my @errs = ();
push @errs, $logRef->{$_}{errno} foreach ( @errKeys );
$analysis{$iteration}{errors} = \@errs;
}
It is not uncommon for my log files to contain 30000+ entries. The analysis run fairly quickly, with the exception of creating the errs array. Is there a more efficient way of generating this array?
Thanks
$hash{++$counter} = ..., ask yourself whether it would be more appropriate to use an array ($array[++$counter] = ...). – mob Sep 23 '11 at 15:47