[PHP] Re: Multi Threading in PHP

2002-02-06 Thread J Smith
Technically that would be multiplexing and not really multithreading, but it's a good idea. (One I had a few months ago -- I wrote a search engine for work in PHP that works prety much exactly as you both describe.) The sockets extension for PHP will allow such functionality using socket_sele

[PHP] Re: Multi Threading in PHP

2002-02-06 Thread John Lim
Hi Bart This can be simulated using non-blocking sockets. However this is one time when using Perl or Python might be a better solution (sigh). Bart Frackiewicz <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi, a few days ago i saw here a thread about multi t