Hi guys
I have a PHP5 script that gets called over 600,000 times a day; currently it includes 4 libraries, though not every function from each library is used for this script.
So I've written a modified version of the script, that includes definitions of all the required functions, so doesn't include any other files, as I assumed that it would be an overhead for PHP to have to look for, open, parse & syntax check each of the libraries, for each request, but now I'm not so sure - does PHP support any sort of caching for included files? Or perhaps it caches the whole script itself?
I can't find much on this on the web, anybody have any similar experience?
Rob