Question to php to do with multi index

2007-04-26 Thread James liu
php not support multi thread,,,and how can u solve with multi index in parallel? now i use curl_multi maybe more effect way i don't know,,,so if u know, tell me. thks. -- regards jl

Re: Question to php to do with multi index

2007-04-27 Thread Michael Kimsal
The curl_multi is probably the most effective way, using straight PHP. Another option would be to spawn several jobs, assuming unix/linux, and wait for them to get done. It doesn't give you very good error handling (well, none at all actually!) but would let you run multiple indexing jobs at once

Re: Question to php to do with multi index

2007-04-27 Thread James liu
i think curl_multi is slow. thks, i will try. 2007/4/27, Michael Kimsal <[EMAIL PROTECTED]>: The curl_multi is probably the most effective way, using straight PHP. Another option would be to spawn several jobs, assuming unix/linux, and wait for them to get done. It doesn't give you very good