Skip to content

Kirby 4.1.2

$cache->getOrSet()

Returns a value by either getting it from the cache or via the callback function which then is stored in the cache for future retrieval. This method cannot be used for null as value to be cached.

$cache->getOrSet(string $key, Closure $result, int $minutes = 0)

Parameters

Name Type Default
$key * string
$result * Closure
$minutes int 0

Parent class

Kirby\Cache\Cache