PHP Interface Sulu\Component\Cache\MemoizeInterface

Afficher le fichier Open project: sulu/sulu Interface Usage Examples

Méthodes publiques

Méthode Description
memoize ( callable $compute, integer $lifeTime = null ) : mixed Returns the value stored in the cache or uses the passed function to compute the value and save to cache This function uses the callstack to generate a unique key for the caching mechanism.
memoizeById ( mixed $id, array $arguments, callable $compute, integer $lifeTime = null ) : mixed Returns the value stored in the cache or uses the passed function to compute the value and save to cache This function uses the given key for the caching mechanism.

Method Details

memoize() public méthode

Returns the value stored in the cache or uses the passed function to compute the value and save to cache This function uses the callstack to generate a unique key for the caching mechanism.
public memoize ( callable $compute, integer $lifeTime = null ) : mixed
$compute callable
$lifeTime integer cache lifetime
Résultat mixed

memoizeById() public méthode

Returns the value stored in the cache or uses the passed function to compute the value and save to cache This function uses the given key for the caching mechanism.
public memoizeById ( mixed $id, array $arguments, callable $compute, integer $lifeTime = null ) : mixed
$id mixed
$arguments array array of parameter to call compute function
$compute callable
$lifeTime integer cache lifetime
Résultat mixed