From: <php...@li...> - 2011-01-21 21:05:04
|
I've been using the PHP/Java bridge for a while now, and it's working quit nicely. I'd like to optimize the performance of my app as much as possible. Part of what I'm doing is running APC. Something that I'm noticing is that the require_once('http://.../Java.inc'); call doesn't seem to be benefiting from APC caching functionality. Ever hit to my application pushes at hit to the tomcat server for Java.inc I was thinking of just changing the require_once to use the path "/var/lib/tomcat5/webapps/JavaBridge/java" to the Java.inc instead. It seems like this shouldn't be a problem, because I don't think Java.inc has anything dynamic about it, right? Does anybody know if it's possible to get APC to cache files accessed via http in addition to the stuff reference on the local filesystem? -- John McGowan Lynch2 792 West Bartlett Road Bartlett, Illinois 60103 www.lynch2.com w:847-608-6900 Ext 4110 |