$cache

Provides easy, persistent caching of markup, strings, arrays or PageArray objects.

// Get a cache named 'foo' that lasts for 1 hour (aka 3600 seconds)
$value = $cache->get('foo', 3600, function() {
  // this is called if cache expired or does not exist,
  // so generate a new cache value here and return it
  return "This is the cached value";
});

Click any linked item for full usage details and examples. Hookable methods are indicated with the icon. In addition to those shown below, the WireCache class also inherits all the methods and properties of: Wire.

Show $var?     Show args?       Only hookable?    

Common

NameReturnSummary 
delete(string $name)
boolDelete/clear the cache(s) identified by given name or wildcard 
deleteAll()
intDelete all caches (where allowed) 
deleteFor(string $ns)
boolDelete one or more caches in a given namespace 
expireAll()
intDeletes all caches that have expiration dates (only) 
get($name)
string array PageArray mixed nullGet data from cache with given name 
getCacheModule()
WireCacheInterfaceGet WireCache module that is currently being used 
getFor($ns, string $name)
string array PageArray mixed nullSame as get() but with namespace 
log()
WireLogSave to the cache log
renderFile(string $filename)
string boolRender a file as a ProcessWire template file and cache the output 
save(string $name, $data)
boolSave data to cache with given name 
saveFor($ns, string $name, $data)
boolSame as save() except with namespace 
setCacheModule(WireCacheInterface $module)
NoneSet WireCache module to use for caching 

Advanced

NameReturnSummary 
getInfo()
arrayGet information about all the caches in this WireCache 
maintenance()
boolCache maintenance removes expired caches 
preload(array $names)
NonePreload the given caches, so that they will be returned without query on the next get() call 
preloadFor($ns)
NonePreload all caches for the given object or namespace 

Constants

These constants are used for the $expire argument of get() and save() cache methods.

NameReturnSummary 
WireCache::defaultCacheClass constWireCacheDatabaseDefault cache class 
WireCache::expireDaily const86400Cache should expire once per day 
WireCache::expireHourly const3600Cache should expire once per hour 
WireCache::expireIgnore constfalseIgnore expiration (skips expiration check) 3.0.218+  
WireCache::expireMonthly const2419200Cache should expire once per month 
WireCache::expireNever const2010-04-08 03:10:10Cache should never expire (unless manually cleared). 
WireCache::expireNow const0Cache should expire now 
WireCache::expireReserved const2010-04-08 03:10:01Cache should never expire and should not be deleted during deleteAll() calls (for PW internal system use) Can only be deleted by delete() calls that specify it directly or match it specifically with a wildcard. 
WireCache::expireSave const2010-01-01 01:01:01Cache should expire when a given resource (Page or Template) is saved. 
WireCache::expireWeekly const604800Cache should expire once per week 

Additional methods and properties

In addition to the methods and properties above, WireCache also inherits the methods and properties of these classes:

API reference based on ProcessWire core version 3.0.251