in reply to Re^2: Constructing a hash - why isn't my regex matching anything
in thread Constructing a hash - why isn't my regex matching anything
Yes. Use less memory.
Look over your program where you are needlessly wasting memory. Maybe you are reading a complete file into memory instead of processing it line by line. Maybe you are doing something else that wastes memory.
Even still, 125000 lines is not much, so most likely you are doing something that wastes a lot of memory.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Constructing a hash - why isn't my regex matching anything
by perl_mystery (Beadle) on Dec 19, 2010 at 10:56 UTC | |
by Anonyrnous Monk (Hermit) on Dec 19, 2010 at 11:36 UTC |