if your familiar with wordpress at all and their main cache add on, it provides a tag which allows a page to be cached except for certain elements on the page. an example below
//this content will not be cached
include ('somefile.html');
if your familiar with wordpress at all and their main cache add on, it provides a tag which allows a page to be cached except for certain elements on the page. an example below
//this content will not be cached
include ('somefile.html');
Comments
Comment #1
Crell commentedNew features will only be accepted for the Drupal 5 version from here on out.
That said, Drupal's caching mechanism is "inside out", just like its page creation system. If a page is cached, the entire page from
<html>to</html>is stored in the database and then pulled out and displayed on page load. Allowing for selected parts of the page to be uncached would, I believe, not be possible without altering Drupal's core caching mechanism. That's well out of scope for this module.