Archive for May, 2007
The following methods can help improve scalability with php applications.
1. object code caching
Whenever a request comes in for a php script, it has to go through the compiler and then execute the object code. If this is cached, you skip compiling and go straight to executing, hence a speed increase
There are quite a few object [...]