TaggedCache (Cache)

TaggedCache

class TaggedCache extends Repository (View source)

Traits

Macroable

Methods

static void macro( string $name, callable $macro)

Register a custom macro.

from Macroable
static bool hasMacro( string $name)

Checks if macro is registered.

from Macroable
static mixed __callStatic( string $method, array $parameters)

Dynamically handle calls to the class.

from Macroable
mixed __call( string $method, array $parameters)

Dynamically handle calls to the class.

from Macroable
void __construct( Store $store, TagSet $tags)

Create a new tagged cache instance.

void setEventDispatcher( Dispatcher $events)

Set the event dispatcher instance.

from Repository
bool has( string $key)

Determine if an item exists in the cache.

from Repository
mixed get( string $key, mixed $default = null)

Retrieve an item from the cache by key.

from Repository
mixed pull( string $key, mixed $default = null)

Retrieve an item from the cache and delete it.

from Repository
void put( string $key, mixed $value, DateTime|int $minutes)

Store an item in the cache.

from Repository
bool add( string $key, mixed $value, DateTime|int $minutes)

Store an item in the cache if the key does not exist.

from Repository
void forever( string $key, mixed $value)

Store an item in the cache indefinitely.

from Repository
mixed remember( string $key, DateTime|int $minutes, Closure $callback)

Get an item from the cache, or store the default value.

from Repository
mixed sear( string $key, Closure $callback)

Get an item from the cache, or store the default value forever.

from Repository
mixed rememberForever( string $key, Closure $callback)

Get an item from the cache, or store the default value forever.

from Repository
bool forget( string $key)

Remove an item from the cache.

from Repository
TaggedCache section( string $name)

Begin executing a new tags operation if the store supports it.

from Repository
TaggedCache tags( array|mixed $names)

Begin executing a new tags operation if the store supports it.

from Repository
int getDefaultCacheTime()

Get the default cache time.

from Repository
void setDefaultCacheTime( int $minutes)

Set the default cache time in minutes.

from Repository
Store getStore()

Get the cache store implementation.

from Repository
bool offsetExists( string $key)

Determine if a cached value exists.

from Repository
mixed offsetGet( string $key)

Retrieve an item from the cache by key.

from Repository
void offsetSet( string $key, mixed $value)

Store an item in the cache for the default time.

from Repository
void offsetUnset( string $key)

Remove an item from the cache.

from Repository
void __clone()

Clone cache repository instance.

from Repository
void increment( string $key, mixed $value = 1)

Increment the value of an item in the cache.

void decrement( string $key, mixed $value = 1)

Increment the value of an item in the cache.

void flush()

Remove all items from the cache.

string taggedItemKey( string $key)

Get a fully qualified key for a tagged item.

Details

static void macro( string $name, callable $macro)

Register a custom macro.

Parameters

string $name
callable $macro

Return Value

void

static bool hasMacro( string $name)

Checks if macro is registered.

Parameters

string $name

Return Value

bool

static mixed __callStatic( string $method, array $parameters)

Dynamically handle calls to the class.

Parameters

string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

mixed __call( string $method, array $parameters)

Dynamically handle calls to the class.

Parameters

string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

void __construct( Store $store, TagSet $tags)

Create a new tagged cache instance.

Parameters

Store $store
TagSet $tags

Return Value

void

void setEventDispatcher( Dispatcher $events)

Set the event dispatcher instance.

Parameters

Dispatcher $events

Return Value

void

bool has( string $key)

Determine if an item exists in the cache.

Parameters

string $key

Return Value

bool

mixed get( string $key, mixed $default = null)

Retrieve an item from the cache by key.

Parameters

string $key
mixed $default

Return Value

mixed

mixed pull( string $key, mixed $default = null)

Retrieve an item from the cache and delete it.

Parameters

string $key
mixed $default

Return Value

mixed

void put( string $key, mixed $value, DateTime|int $minutes)

Store an item in the cache.

Parameters

string $key
mixed $value
DateTime|int $minutes

Return Value

void

bool add( string $key, mixed $value, DateTime|int $minutes)

Store an item in the cache if the key does not exist.

Parameters

string $key
mixed $value
DateTime|int $minutes

Return Value

bool

void forever( string $key, mixed $value)

Store an item in the cache indefinitely.

Parameters

string $key
mixed $value

Return Value

void

mixed remember( string $key, DateTime|int $minutes, Closure $callback)

Get an item from the cache, or store the default value.

Parameters

string $key
DateTime|int $minutes
Closure $callback

Return Value

mixed

mixed sear( string $key, Closure $callback)

Get an item from the cache, or store the default value forever.

Parameters

string $key
Closure $callback

Return Value

mixed

mixed rememberForever( string $key, Closure $callback)

Get an item from the cache, or store the default value forever.

Parameters

string $key
Closure $callback

Return Value

mixed

bool forget( string $key)

Remove an item from the cache.

Parameters

string $key

Return Value

bool

TaggedCache section( string $name)

Begin executing a new tags operation if the store supports it.

Parameters

string $name

Return Value

TaggedCache

TaggedCache tags( array|mixed $names)

Begin executing a new tags operation if the store supports it.

Parameters

array|mixed $names

Return Value

TaggedCache

Exceptions

BadMethodCallException

int getDefaultCacheTime()

Get the default cache time.

Return Value

int

void setDefaultCacheTime( int $minutes)

Set the default cache time in minutes.

Parameters

int $minutes

Return Value

void

Store getStore()

Get the cache store implementation.

Return Value

Store

bool offsetExists( string $key)

Determine if a cached value exists.

Parameters

string $key

Return Value

bool

mixed offsetGet( string $key)

Retrieve an item from the cache by key.

Parameters

string $key

Return Value

mixed

void offsetSet( string $key, mixed $value)

Store an item in the cache for the default time.

Parameters

string $key
mixed $value

Return Value

void

void offsetUnset( string $key)

Remove an item from the cache.

Parameters

string $key

Return Value

void

void __clone()

Clone cache repository instance.

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

void decrement( string $key, mixed $value = 1)

Increment the value of an item in the cache.

Parameters

string $key
mixed $value

Return Value

void

void flush()

Remove all items from the cache.

Return Value

void

string taggedItemKey( string $key)

Get a fully qualified key for a tagged item.

Parameters

string $key

Return Value

string

© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.1/Illuminate/Cache/TaggedCache.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部