Hello there,

How do most people here create their caching logic for PHP scripts? The 
problem is that most PHP scripts have some part of the page that is unique 
to each request (let it be current time, e-mail list in an e-mail reading 
application, session IDs on some servers, or whatever).

Is the general logic to slice the page into some general pieces. For example 
ones that have always general data and those that change. Then the ones that 
don't change are streamed to the user using passthrough and the rest of the 
page is generated dynamically with the newest relevant data.

Or are there any other good ideas to solve PHP caching problems?

Thanks,
Hans

_________________________________________________________________
Join the world’s largest e-mail service with MSN Hotmail. 
http://www.hotmail.com


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

Reply via email to