RE: [PHP-DEV] Making parallel database queries from PHP

2007-11-11 Thread Arnold Daniels
ing to deal with all the > distributed databases. > > Thanks! > Arend. > > > -Oorspronkelijk bericht- > Van: Donal McMullan [mailto:[EMAIL PROTECTED] > Verzonden: za 10-11-2007 13:43 > Aan: Arend van Beelen > CC: internals@lists.php.net; Alexey Zakhlestin &

Re: [PHP-DEV] Making parallel database queries from PHP

2007-11-10 Thread Rasmus Lerdorf
Arend van Beelen wrote: > thanks for your thorough reply! I'm glad to see the first option appears to > be preferred, as it was my first choise as well. The main reason I had some > doubts was because a colleague of mine quite strongly argued (though I was > still not entirely convinced) that I

RE: [PHP-DEV] Making parallel database queries from PHP

2007-11-10 Thread Arend van Beelen
an [mailto:[EMAIL PROTECTED] Verzonden: za 10-11-2007 13:43 Aan: Arend van Beelen CC: internals@lists.php.net; Alexey Zakhlestin Onderwerp: Re: [PHP-DEV] Making parallel database queries from PHP Hi Arend - If your webserver CPUs are already maxed out, that problem won't go away on its own,

RE: [PHP-DEV] Making parallel database queries from PHP

2007-11-10 Thread Arend van Beelen
Hi Lukas, > 2) maybe you can create something out of MySQL Proxy that splits out > a single query into multiple queries and then rejoins them > 3) since MySQL AB is actively developing a new libmysql replacement > for PHP only, you might want to talk to them about implementing > something li

Re: [PHP-DEV] Making parallel database queries from PHP

2007-11-10 Thread Donal McMullan
would probably not be able to get more pageviews out of it either. -Oorspronkelijk bericht- Van: Alexey Zakhlestin [mailto:[EMAIL PROTECTED] Verzonden: za 10-11-2007 11:31 Aan: Arend van Beelen CC: internals@lists.php.net Onderwerp: Re: [PHP-DEV] Making parallel database queries from

Re: [PHP-DEV] Making parallel database queries from PHP

2007-11-10 Thread Lukas Kahwe Smith
Hi, A few pointers and ideas: 1) ext/pgsql has support for asynchronous queries (pg_send_query() and friends) 2) maybe you can create something out of MySQL Proxy that splits out a single query into multiple queries and then rejoins them 3) since MySQL AB is actively developing a new libmysq

RE: [PHP-DEV] Making parallel database queries from PHP

2007-11-10 Thread Arend van Beelen
ECTED] Verzonden: za 10-11-2007 11:31 Aan: Arend van Beelen CC: internals@lists.php.net Onderwerp: Re: [PHP-DEV] Making parallel database queries from PHP I would prefer to have some function, which would check, if the requested data is already available (if it is not, I would still be able to do some

RE: [PHP-DEV] Making parallel database queries from PHP

2007-11-10 Thread Arend van Beelen
her databases in the future. 4) Target platform is Gentoo Linux x86-64. Thanks again! Arend. -Oorspronkelijk bericht- Van: Scott A. Guyer [mailto:[EMAIL PROTECTED] Verzonden: za 10-11-2007 3:46 Aan: Arend van Beelen Onderwerp: RE: [PHP-DEV] Making parallel database queries from PHP Hi Arend,

Re: [PHP-DEV] Making parallel database queries from PHP

2007-11-10 Thread Alexey Zakhlestin
I would prefer to have some function, which would check, if the requested data is already available (if it is not, I would still be able to do something useful, while waiting) On 11/10/07, Arend van Beelen <[EMAIL PROTECTED]> wrote: > Hi there, > > I am researching the possibility of developing a