
Originally Posted by
Athox
In JSP the request is handed to a pre-loaded method, which is among other things already connected to a database (already here we have a significant performance boost compared to php). This method then parses the request and performs the desired operations on the already loaded code, which means there are _NO_ instructions between parsing the request and executing the desired code, whereas in PHP, there are possibly several includes and requires just for the request code, not to mention all the libraries that have to be included and executed, BEFORE you even get to the real code you want.
Bookmarks