Quote:
Originally Posted by Razasharp
If it's accessed more than once every 5 minutes... then I'd say yes.
|
I have set up a caching system for my home made CMS, and will post results once my dev site goes live.
The caching script makes several queries to the database and writes them to an .html file every 5 minutes. I then use PHP's output buffering in my php scripts, instead of using the template system.
I'm being selective on what queries I cache, because I am sure that the small ones are probably faster to run in real time than using the output buffering.