,
Gopal
-Original Message-
From: Nick Craig-Wood [mailto:n...@craig-wood.com]
Sent: Thursday, January 08, 2009 3:01 PM
To: python-list@python.org
Subject: Re: Multiprocessing takes higher execution time
Sibtey Mehdi wrote:
> I use multiprocessing to compare more then one set of fi
On Thu, Jan 8, 2009 at 7:31 PM, Nick Craig-Wood wrote:
(...)
> How many projects are you processing at once? And how many MB of zip
> files is it? As reading zip files does lots of disk IO I would guess
> it is disk limited rather than anything else, which explains why doing
> many at once is a
Sibtey Mehdi wrote:
> I use multiprocessing to compare more then one set of files.
>
> For comparison each set of files (i.e. Old file1 Vs New file1)
> I create a process,
>
> Process(target=compare, args=(oldFile, newFile)).start()
>
> It takes 61 seconds execution time.
>
> When I do the sam
higher execution time
On 2009-01-07, Steve Holden wrote:
>> I use multiprocessing to compare more then one set of files.
>>
>> For comparison each set of files (i.e. Old file1 Vs New file1)
>> I create a process,
>>
>> Process(target=compare, args=(oldFile,
Grant Edwards wrote:
> On 2009-01-07, Steve Holden wrote:
>
> >> I use multiprocessing to compare more then one set of files.
> >>
> >> For comparison each set of files (i.e. Old file1 Vs New file1)
> >> I create a process,
> >>
> >> Process(target=compare, args=(oldFile, newFile)).start()
>
On 2009-01-07, Steve Holden wrote:
>> I use multiprocessing to compare more then one set of files.
>>
>> For comparison each set of files (i.e. Old file1 Vs New file1)
>> I create a process,
>>
>> Process(target=compare, args=(oldFile, newFile)).start()
>>
>> It takes 61 seconds execution time
Sibtey Mehdi wrote:
> Hi,
>
>
>
> I use multiprocessing to compare more then one set of files.
>
> For comparison each set of files (i.e. Old file1 Vs New file1) I create
> a process,
>
> Process(target=compare, args=(oldFile, newFile)).start()
>
> It takes 61 seconds execution time.
>
>
Hi,
I use multiprocessing to compare more then one set of files.
For comparison each set of files (i.e. Old file1 Vs New file1) I create a
process,
Process(target=compare, args=(oldFile, newFile)).start()
It takes 61 seconds execution time.
When I do the same comparison without implement