Re: filename.writeln() across network

2012-06-26 Thread Paul
On Thursday, 21 June 2012 at 19:52:26 UTC, Danny Arends wrote: On Thursday, 21 June 2012 at 17:14:34 UTC, Regan Heath wrote: On Thu, 21 Jun 2012 14:56:37 +0100, Paul phshaf...@gmail.com wrote: I wrote a program that parses a text file and writes results as it is processing the file (i.e.

filename.writeln() across network

2012-06-21 Thread Paul
I wrote a program that parses a text file and writes results as it is processing the file (i.e. many writeln()'s). On my local harddrive it works fine. When I later used it on a file located on a file server, it went from 500ms to 1 minute processing time. It there a more efficient way to

Re: filename.writeln() across network

2012-06-21 Thread Jonathan M Davis
On Thursday, June 21, 2012 18:14:26 Regan Heath wrote: On Thu, 21 Jun 2012 14:56:37 +0100, Paul phshaf...@gmail.com wrote: I wrote a program that parses a text file and writes results as it is processing the file (i.e. many writeln()'s). On my local harddrive it works fine. When I later

Re: filename.writeln() across network

2012-06-21 Thread Danny Arends
On Thursday, 21 June 2012 at 17:14:34 UTC, Regan Heath wrote: On Thu, 21 Jun 2012 14:56:37 +0100, Paul phshaf...@gmail.com wrote: I wrote a program that parses a text file and writes results as it is processing the file (i.e. many writeln()'s). On my local harddrive it works fine. When I