I'm trying to improve the speed of our server but I would like to have your view of that before modifying everything.
I have a high read rate on my file system. Right now we are using regular PHP file. I wonder if I can cache these file in Memcache and later do an eval on the code if it will be faster than letting these file get interpreted.
So is it better to have memcache + eval or regular php interpretation. I think one solution can be tempfs but I haven't use it yet.