silver* Posted September 13, 2008 Share Posted September 13, 2008 Hello, I know that it is possible to cache part of a php script but how do you actually express that in code and with what tools? Do you use a php op-code cache and include a secondary cached script within the one you are working with? I have been looking around but can't find how to do it. I know it must be fairly simple. Link to comment https://forums.phpfreaks.com/topic/124088-php-accelerator-question/ Share on other sites More sharing options...
PFMaBiSmAd Posted September 13, 2008 Share Posted September 13, 2008 php accelerators work at the server level to cache parsed/tokenized php pages. Any caching that you can do in a script would be limited to caching data or content that the script generates. What kind of problem are you having that you are trying to solve? Link to comment https://forums.phpfreaks.com/topic/124088-php-accelerator-question/#findComment-640644 Share on other sites More sharing options...
silver* Posted September 13, 2008 Author Share Posted September 13, 2008 its not necessarily a problem im trying to solve. Im just learning how to scale web sites and there are lots of various caches such as memcache, database caches, caches with template engines such as smarty. Im trying to wrap my head around how all of them work and which ones are equivalent and where to use them. I haven't found any resource on the web that explains this that well. Link to comment https://forums.phpfreaks.com/topic/124088-php-accelerator-question/#findComment-640703 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.