From: <php...@li...> - 2010-08-25 09:05:48
|
Hi Daniel, > writing to determine if my initial tests are coincidence or if I indeed can > assume that the same server side thread is allocated for the duration of a > single page rendering on the php side. the PHP/Java Bridge uses persistent connections, yes. If a PHP process "j" is connected to a java thread "k", j will continue to use k until j or k is destroyed (OOM condition or other fatal error). Note: persistent connections are not used if you program your own servlet. That's up to you: http://php-java-bridge.sourceforge.net/pjb/servlet-programming.php Regards, Jost Bökemeier |