Re: Fastest way to write huge files

2008-08-30 Thread Larry Bates
Mohamed Yousef wrote: If connection is over Internet via HTTP the connection speed is so slow in relation to the speed of your CPU that it doesn't really matter. this is not always true , espicially when using a localhost or a local netwtork server the problem is the increase in cpu and memory u

Re: Fastest way to write huge files

2008-08-30 Thread Mohamed Yousef
> > If connection is over Internet via HTTP the connection speed is so slow in > relation to the speed of your CPU that it doesn't really matter. this is not always true , espicially when using a localhost or a local netwtork server the problem is the increase in cpu and memory usage make it a pain

Re: Fastest way to write huge files

2008-08-30 Thread Larry Bates
Mohamed Yousef wrote: Thanks all , but there is still something i forget to state -sorry - all communication will be via Http with a server so data is received via Http so local network solutions won't work the problem really starts after receiving data in storing them without much of a CPU/Memor

Re: Fastest way to write huge files

2008-08-29 Thread Mohamed Yousef
Thanks all , but there is still something i forget to state -sorry - all communication will be via Http with a server so data is received via Http so local network solutions won't work the problem really starts after receiving data in storing them without much of a CPU/Memory usage and with a good

Re: Fastest way to write huge files

2008-08-29 Thread Tim Golden
Terry Reedy wrote: Mohamed Yousef wrote: let's say , I'm moving large files through network between devices what is the fastest way to do this ? what i came up with :- Use your OS's network copy command. On unix, that was once uucp. On Windows, I drag-and-drop to/from a Network Neighborho

Re: Fastest way to write huge files

2008-08-28 Thread Terry Reedy
Mohamed Yousef wrote: Hello , let's say , I'm moving large files through network between devices what is the fastest way to do this ? what i came up with :- Use your OS's network copy command. On unix, that was once uucp. On Windows, I drag-and-drop to/from a Network Neighborhood location

Re: Fastest way to write huge files

2008-08-28 Thread James Mills
Hi, You could use generators connected via a pipe or tcp socket ... cheers James On Fri, Aug 29, 2008 at 10:35 AM, Mohamed Yousef <[EMAIL PROTECTED]> wrote: > Hello , > > let's say , I'm moving large files through network between devices > what is the fastest way to do this ? > what i came up wi

Re: Fastest way to write huge files

2008-08-28 Thread [EMAIL PROTECTED]
On Aug 28, 5:35 pm, "Mohamed Yousef" <[EMAIL PROTECTED]> wrote: > Hello , > > let's say , I'm moving large files through network between devices > what is the fastest way to do this ? > what i came up with :- > > 1) using regular file operations with an in memory limit of 4MB which > when filled wr

Fastest way to write huge files

2008-08-28 Thread Mohamed Yousef
Hello , let's say , I'm moving large files through network between devices what is the fastest way to do this ? what i came up with :- 1) using regular file operations with an in memory limit of 4MB which when filled written to disk and re-filled again 2) using memory mapped files in the followi