Ubiquity 2.5.2
php rapid development framework
Loading...
Searching...
No Matches
ApcuCache Class Reference

APC cache implementation Ubiquity\cache\system$ApcCache This class is part of Ubiquity. More...

+ Inheritance diagram for ApcuCache:

Public Member Functions

 __construct ($root, $postfix="")
 Initializes the apc cache-provider.
 
 exists ($key)
 Check if annotation-data for the key has been stored.
 
 store ($key, $code, $tag=null)
 Caches the given data with the given key.
 
 fetch ($key)
 Fetches data stored for the given key.
 
 file_get_contents ($key)
 return data stored for the given key.
 
 getTimestamp ($key)
 Returns the timestamp of the last cache update for the given key.
 
 remove ($key)
 
 clear ()
 Clears all cache entries.
 
 getCacheFiles ($type)
 
 clearCache ($type)
 
 getEntryKey ($key)
 
- Public Member Functions inherited from AbstractDataCache
 init ()
 
 expired ($key, $duration)
 
 getRoot ()
 
 setRoot ($_root)
 
 getCacheInfo ()
 

Protected Member Functions

 getRealKey ($key)
 
 getCacheEntries ($type)
 
 getAllEntries ()
 

Additional Inherited Members

- Protected Attributes inherited from AbstractDataCache
 $_root
 
 $postfix
 

Detailed Description

APC cache implementation Ubiquity\cache\system$ApcCache This class is part of Ubiquity.

Author
jcheron myadd.nosp@m.ress.nosp@m.mail@.nosp@m.gmai.nosp@m.l.com
Version
1.0.2

Definition at line 17 of file ApcuCache.php.

Constructor & Destructor Documentation

◆ __construct()

__construct (   $root,
  $postfix = "" 
)

Initializes the apc cache-provider.

Reimplemented from AbstractDataCache.

Definition at line 22 of file ApcuCache.php.

Member Function Documentation

◆ clear()

clear ( )

Clears all cache entries.

Reimplemented from AbstractDataCache.

Definition at line 92 of file ApcuCache.php.

◆ clearCache()

clearCache (   $type)

Reimplemented from AbstractDataCache.

Definition at line 126 of file ApcuCache.php.

◆ exists()

exists (   $key)

Check if annotation-data for the key has been stored.

Parameters
string$keycache key
Returns
string[]|boolean true if data with the given key has been stored; otherwise false

Reimplemented from AbstractDataCache.

Definition at line 32 of file ApcuCache.php.

◆ fetch()

fetch (   $key)

Fetches data stored for the given key.

Parameters
string$keycache key
Returns
mixed the cached data

Reimplemented from AbstractDataCache.

Definition at line 52 of file ApcuCache.php.

◆ file_get_contents()

file_get_contents (   $key)

return data stored for the given key.

Parameters
string$keycache key
Returns
mixed the cached data

Reimplemented from AbstractDataCache.

Definition at line 62 of file ApcuCache.php.

◆ getAllEntries()

getAllEntries ( )
protected

Definition at line 103 of file ApcuCache.php.

◆ getCacheEntries()

getCacheEntries (   $type)
protected

Definition at line 96 of file ApcuCache.php.

◆ getCacheFiles()

getCacheFiles (   $type)

Reimplemented from AbstractDataCache.

Definition at line 112 of file ApcuCache.php.

◆ getEntryKey()

getEntryKey (   $key)

Reimplemented from AbstractDataCache.

Definition at line 133 of file ApcuCache.php.

◆ getRealKey()

getRealKey (   $key)
protected

Definition at line 42 of file ApcuCache.php.

◆ getTimestamp()

getTimestamp (   $key)

Returns the timestamp of the last cache update for the given key.

Parameters
string$keycache key
Returns
boolean|int unix timestamp

Reimplemented from AbstractDataCache.

Definition at line 72 of file ApcuCache.php.

◆ remove()

remove (   $key)
Parameters
string$key

Reimplemented from AbstractDataCache.

Definition at line 88 of file ApcuCache.php.

◆ store()

store (   $key,
  $code,
  $tag = null 
)

Caches the given data with the given key.

Parameters
string$keycache key
mixed$codethe source-code to be cached
string$tagthe item tag
Exceptions
CacheException

Reimplemented from AbstractDataCache.

Definition at line 38 of file ApcuCache.php.


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