in reply to Re^2: Managing System Memory Resources
in thread Managing System Memory Resources
... isn't writing chunks then concatenating them simply going to defer the memory consumption problem to the program doing the concatenation?
Nope. Concatenating files takes very little application memory unless you're trying to optimize disk head movement. Even then, the OS generally does a better job. Think
but in slighly larger chunks.while ( <IN> ) { print OUT $_; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Managing System Memory Resources
by BrowserUk (Patriarch) on Jun 26, 2004 at 07:32 UTC | |
by dws (Chancellor) on Jun 26, 2004 at 07:51 UTC |