Elgg  Version master
Public Member Functions | List of all members
Elgg\Cache\SystemCache Class Reference

System Cache. More...

Public Member Functions

 __construct (BaseCache $cache, protected Config $config)
 Constructor. More...
 
 reset ()
 Reset the system cache by deleting the caches. More...
 
 save (string $type, $data, int $expire_after=null)
 Saves a system cache. More...
 
 load (string $type)
 Retrieve the contents of a system cache. More...
 
 delete (string $type)
 Deletes the contents of a system cache. More...
 
 isEnabled ()
 Is system cache enabled. More...
 
 enable ()
 Enables the system disk cache. More...
 
 disable ()
 Disables the system disk cache. More...
 

Detailed Description

System Cache.

Definition at line 14 of file SystemCache.php.

Constructor & Destructor Documentation

Elgg\Cache\SystemCache::__construct ( BaseCache  $cache,
protected Config  $config 
)

Constructor.

Parameters
BaseCache$cacheElgg disk cache
Config$configElgg config

Definition at line 24 of file SystemCache.php.

Member Function Documentation

Elgg\Cache\SystemCache::delete ( string  $type)

Deletes the contents of a system cache.

Parameters
string$typeThe type of cache to delete
Returns
bool

Definition at line 78 of file SystemCache.php.

Elgg\Cache\SystemCache::disable ( )

Disables the system disk cache.

Uses the 'system_cache_enabled' config with a boolean value. Resets the system cache.

Returns
void

Definition at line 112 of file SystemCache.php.

Elgg\Cache\SystemCache::enable ( )

Enables the system disk cache.

Uses the 'system_cache_enabled' config with a boolean value. Resets the system cache.

Returns
void

Definition at line 99 of file SystemCache.php.

Elgg\Cache\SystemCache::isEnabled ( )

Is system cache enabled.

Returns
bool

Definition at line 87 of file SystemCache.php.

Elgg\Cache\SystemCache::load ( string  $type)

Retrieve the contents of a system cache.

Parameters
string$typeThe type of cache to load
Returns
mixed null if key not found in cache

Definition at line 61 of file SystemCache.php.

Elgg\Cache\SystemCache::reset ( )

Reset the system cache by deleting the caches.

Returns
void

Definition at line 33 of file SystemCache.php.

Elgg\Cache\SystemCache::save ( string  $type,
  $data,
int  $expire_after = null 
)

Saves a system cache.

Parameters
string$typeThe type or identifier of the cache
mixed$dataThe data to be saved
int$expire_afterNumber of seconds to expire the cache after
Returns
bool

Definition at line 46 of file SystemCache.php.


The documentation for this class was generated from the following file: