"Ed Lazor" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Is anyone taking a dynamic PHP / MySQL site and storing or cacheing it
> statically in order for pages to display more quickly when visitors access
> the site?  If so, what solutions are you using to achieve this?

well, mysql query result cacheing is great preformance booster, and so is
any kind of php accellerator )which basically cache compiled byte codes).
Often turning on html compression has great effect on performance.

As for application level cacheing, if needed, I cache parts of the page that
repeat often menues, toolbars, articles, and store resulting html for them
in db, so that the do not need to be recalculated each time page is
displayed. (I use TT support for cacheing).

rush
--
http://www.templatetamer.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to