Re: [PHP] Simultaneus execution

2004-08-29 Thread Andrew
That was exactly what I thought, but I was thinking of some internal method, that would do the same thing as socket_set_noblock() for the process of execution. "Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Andrew wrote: > > Now look - I want to make a test/debug e

Re: [PHP] Simultaneus execution

2004-08-29 Thread Marek Kilimajer
Andrew wrote: Now look - I want to make a test/debug engine, that will optimize the performance of each machine I make tests on - my idea is to run as many similar processes as possible in the tasklist of the OS. That would be the same as creating multiple child processes of a single script. The re

Re: Re[2]: [PHP] Simultaneus execution

2004-08-29 Thread Andrew
Now look - I want to make a test/debug engine, that will optimize the performance of each machine I make tests on - my idea is to run as many similar processes as possible in the tasklist of the OS. That would be the same as creating multiple child processes of a single script. The results will be

Re[2]: [PHP] Simultaneus execution

2004-08-29 Thread Eugene
Maybe you can use classes in this case? I'm using them when I need to process the same object or to assign some simultaneous actions to many objects at the same time. Sunday, August 29, 2004, 6:40:42 AM, you wrote: > An example would be the execution of a function. Let's say that I can't > execut

Re: [PHP] Simultaneus execution

2004-08-29 Thread Andrew
An example would be the execution of a function. Let's say that I can't execute one same function twice, but how can I execute it again, before the first execution has completed? Regards, Andrew "Jason Wong" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Sunday 29 August 2004 09

Re: [PHP] Simultaneus execution

2004-08-28 Thread Jason Wong
On Sunday 29 August 2004 09:56, Andrew wrote: > Do anyone have an idea how to execute 2 different functions in the same > moment, no matter if they're system or custom ones. For example, how can I > execute 2 different loops simultaneously? I'm curious at what you're trying to achieve. Could you

[PHP] Simultaneus execution

2004-08-28 Thread Andrew
Hello guys, Do anyone have an idea how to execute 2 different functions in the same moment, no matter if they're system or custom ones. For example, how can I execute 2 different loops simultaneously? -- Regards, Andrew [EMAIL PROTECTED] -- PHP Ge