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
int|bool increment(string $key, mixed $value = 1) Increment the value of an item in the cache. Parameters string $key mixed $value Return Value int|bool
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
float|int getDefaultCacheTime() Get the default cache time. Return Value float|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
void forever(string $key, mixed $value) Store an item in the cache indefinitely. Parameters string $key mixed $value Return Value void
Page 283 of 996