in reply to Out of memory problems
Are you using <FH>, with or without changing $/? or read/sysread(FH)?
If it is possible then I suggest you read only parts of your file at a time (1 kb?, 100 kb?, 1 mb, ...?). You can do this either by using read/sysread or by setting $/ to a reference to an integer: eg: $/ = \1024;, this way <FH> will/should only read 1024 bytes.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Out of memory problems
by tperdue (Sexton) on Oct 21, 2004 at 10:40 UTC |