Page Cache Class
Default Cache Path: C:\hosts\framework\system\cache\
This class caches the whole page into a txt file or memory on the server to be severed on the next request. I found the class on 4 Guys from Rolla by Joe Audette. link
Code: Dim objCache Set objCache = New CPageCache objCache.AutoCacheToFile() Set objCache = Nothing
Functions for Controlling the Cache View the Cached Paged: Url ex: - libraries/cache-page Recreate the Page Cache: Url ex: - libraries/cache-page/create-cache Clear Current page Cache: Url ex: - libraries/cache-page/clear-cache Clear All Cached Pages: Url ex: - libraries/cache-page/clearall-cache Bypass Cache: Url ex: - libraries/cache-page/bypass-cache