in reply to out of memory problem

What are you doing with the file? Slurping the contents or producing large global hashes or arrays are the usual culprits. Look for places to restrict the scope of large variables and try to process the file a line at a time (or other smallish chunk).

We can help better if you show us code and say what the data is like.

After Compline,
Zaxo

Replies are listed 'Best First'.
Re^2: out of memory problem
by EchoAngel (Pilgrim) on Mar 08, 2005 at 13:41 UTC
    my script is a generic parser and creates this complex hash structure. Then I process this hash structure again to give me only the important data. Then I do a lot of boolean math on it