Class Sectionable
- Laravel\Cache\Drivers\Driver
- Laravel\Cache\Drivers\Sectionable
public
mixed
|
#
get_from_section( string $section, string $key, mixed $default = null )
Retrieve a sectioned item from the cache driver. |
public
|
#
put_in_section( string $section, string $key, mixed $value, integer $minutes )
Write a sectioned item to the cache. |
public
|
#
forever_in_section( string $section, string $key, mixed $value )
Write a sectioned item to the cache that lasts forever. |
public
mixed
|
#
remember_in_section( string $section, string $key, mixed $default, integer $minutes, string $function = 'put' )
Get a sectioned item from the cache, or cache and return the default value. |
public
mixed
|
#
sear_in_section( string $section, string $key, mixed $default )
Get a sectioned item from the cache, or cache the default value forever. |
public
|
|
abstract public
integer|boolean
|
|
protected
boolean
|
|
protected
boolean
|
|
protected
array
|
expiration(),
forget(),
get(),
has(),
put(),
remember(),
retrieve(),
sear()
|
public
boolean
|
$implicit | true |
#
Indicates that section caching is implicit based on keys. |
public
string
|
$delimiter | '::' |
#
The implicit section key delimiter. |