Forum Moderators: coopster
I'm using PHP 4 with Apache 2, and would like to share experiencies with PHP libraries to cache webpages.
I've got some webpages dinamically generated with mySQL data. These data changes 1-2 times per day, and it's not worth reading DataBase each time one user accesses my webpage, since it's "nearly" static.
So, I'm trying to find a PHP library which caches these webpage each time data are changed.
Is there anyone? Thank you very much.
I myself use smarty engine that has caching built in
Regards
Michal
I also use Smarty, but server's still reading data from mySQL, and I want not to do it (for instance, by using the method proposed in the URL you mention).
I receive +100,000 visits per day and data change 1-2 times per day. It's no worth reading these data everytime user accesses the webpage.