bool offsetExists(string $key) Determine if a cached value exists. Parameters string $key Return Value bool
array many(array $keys) Retrieve multiple items from the cache by key. Items not found in the cache will have a null value. Parameters array $keys Return Value array
static void macro(string $name, callable $macro) Register a custom macro. Parameters string $name callable $macro Return Value void
void increment(string $key, mixed $value = 1) Increment the value of an item in the cache. Parameters string $key mixed $value Return Value void
static bool hasMacro(string $name) Checks if macro is registered. Parameters string $name Return Value bool
bool has(string $key) Determine if an item exists in the cache. Parameters string $key Return Value bool
Store getStore() Get the cache store implementation. Return Value Store
int getDefaultCacheTime() Get the default cache time. Return Value int
mixed get(string $key, mixed $default = null) Retrieve an item from the cache by key. Parameters string $key mixed $default Return Value mixed
bool forget(string $key) Remove an item from the cache. Parameters string $key Return Value bool
Page 92 of 996