I am trying to implement MOD_DISK_CACHE. Is it possible to cache only the static contents of a page containing both static and dynamic content?
i.e, if I want to cache the homepage of a user profile, I just want to cache the static contents of that page which will be common/generic to all the users, while the dynamic contents for eg "Welcome <Username>!!!"
, which is different for different users should be handled separately.
Any pointers would be so helpful.