I am receiving a out of memory issue when providing the huge file data as a argument. I have checked the memory size it has free space 2045 mb. Is that sufficient for the swap space to sort the records in hash ref value. please let me know what checks can be done.
thanks for your explanation.
I am using the hash module as below.
my ($href, @list);
$href = $self->{set}{$ret} if ($scope eq 'set');
$href = $self->{done}{$ret} if ($scope eq 'done');
foreach (sort keys %$href) {
push @list, $href->{$_};
}
return @list;
Its is reading from the oracle table.