RE: [PHP] Open 10 http connections in parallel

2002-08-08 Thread Steve Edberg

I've never done this before, but you probably could open these 
connections via a socket, and set them all non-blocking. Presumably 
you'd them have to write a loop that polled all connections to check 
if they'd closed, or time them out after some number of seconds. See

http://php.he.net/manual/en/function.socket-set-blocking.php
and
http://php.he.net/manual/en/ref.network.php


-steve

At 1:28 PM +1000 8/9/02, Martin Towell <[EMAIL PROTECTED]> wrote:
>use C and fork()
>php (AFAIK) can't do parallel programming
>
>-Original Message-
>From: NoWhErEMan [mailto:[EMAIL PROTECTED]]
>Sent: Friday, August 09, 2002 12:58 PM
>To: [EMAIL PROTECTED]
>Subject: [PHP] Open 10 http connections in parallel
>
>
>Hello,
>
>I had to write a script  to open 10 http connections for different links and
>get the response from the host.
>I do it by fopen each url one by one and save the response to a separated
>file. But it slow!
>I wonder if i can open 10 connnect (or more) in parallel?
>
>Thanks in advance.
>NoWhErEMaN
>

-- 
++
| Steve Edberg  [EMAIL PROTECTED] |
| University of California, Davis  (530)754-9127 |
| Programming/Database/SysAdmin   http://pgfsun.ucdavis.edu/ |
++
| The end to politics as usual:  |
| The Monster Raving Loony Party (http://www.omrlp.com/) |
++

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] Open 10 http connections in parallel

2002-08-08 Thread Martin Towell

use C and fork()
php (AFAIK) can't do parallel programming

-Original Message-
From: NoWhErEMan [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 09, 2002 12:58 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Open 10 http connections in parallel 


Hello,

I had to write a script  to open 10 http connections for different links and
get the response from the host.
I do it by fopen each url one by one and save the response to a separated
file. But it slow!
I wonder if i can open 10 connnect (or more) in parallel?

Thanks in advance.
NoWhErEMaN



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php