API17

JCacheStorage: Difference between revisions

From Joomla! Documentation

m User contributed notes: moving preparation
m moving preparation
Line 14: Line 14:
|-
|-
|public  
|public  
|[[JCacheStorage::__construct/11.1|__construct]]
|[[API17:JCacheStorage::__construct|__construct]]
|Constructor.  
|Constructor.  
|-
|-
|public  
|public  
|[[JCacheStorage::clean/11.1|clean]]
|[[API17:JCacheStorage::clean|clean]]
|Clean cache for a group given a mode.  
|Clean cache for a group given a mode.  
|-
|-
|public  
|public  
|[[JCacheStorage::gc/11.1|gc]]
|[[API17:JCacheStorage::gc|gc]]
|Garbage collect expired cache data.  
|Garbage collect expired cache data.  
|-
|-
|public  
|public  
|[[JCacheStorage::get/11.1|get]]
|[[API17:JCacheStorage::get|get]]
|Get cached data by id and group.  
|Get cached data by id and group.  
|-
|-
|public  
|public  
|[[JCacheStorage::getAll/11.1|getAll]]
|[[API17:JCacheStorage::getAll|getAll]]
|Get all cached data.  
|Get all cached data.  
|-
|-
|public  
|public  
|[[JCacheStorage::lock/11.1|lock]]
|[[API17:JCacheStorage::lock|lock]]
|Lock cached item.  
|Lock cached item.  
|-
|-
|public  
|public  
|[[JCacheStorage::remove/11.1|remove]]
|[[API17:JCacheStorage::remove|remove]]
|Remove a cached data entry by id and group.  
|Remove a cached data entry by id and group.  
|-
|-
|public  
|public  
|[[JCacheStorage::store/11.1|store]]
|[[API17:JCacheStorage::store|store]]
|Store the data to cache by id and group.  
|Store the data to cache by id and group.  
|-
|-
|public  
|public  
|[[JCacheStorage::unlock/11.1|unlock]]
|[[API17:JCacheStorage::unlock|unlock]]
|Unlock cached item.  
|Unlock cached item.  
|-
|-
|public static  
|public static  
|[[JCacheStorage::addIncludePath/11.1|addIncludePath]]
|[[API17:JCacheStorage::addIncludePath|addIncludePath]]
|Add a directory where  should search for handlers.  
|Add a directory where  should search for handlers.  
|-
|-
|public static  
|public static  
|[[JCacheStorage::getInstance/11.1|getInstance]]
|[[API17:JCacheStorage::getInstance|getInstance]]
|Returns a cache storage handler object, only creating it if it doesn't already exist.  
|Returns a cache storage handler object, only creating it if it doesn't already exist.  
|-
|-
|public static  
|public static  
|[[JCacheStorage::test/11.1|test]]
|[[API17:JCacheStorage::test|test]]
|Test to see if the storage handler is available.  
|Test to see if the storage handler is available.  
|-
|-
|protected  
|protected  
|[[JCacheStorage::_getCacheId/11.1|_getCacheId]]
|[[API17:JCacheStorage::_getCacheId|_getCacheId]]
|Get a cache_id string from an id/group pair.  
|Get a cache_id string from an id/group pair.  
|-
|-
Line 68: Line 68:
* '''Defined in''' libraries/joomla/cache/storage.php
* '''Defined in''' libraries/joomla/cache/storage.php
* '''Extended by'''
* '''Extended by'''
** [[JCacheStorageApc/11.1|JCacheStorageApc]]
** [[API17:JCacheStorageApc|JCacheStorageApc]]
** [[JCacheStorageCachelite/11.1|JCacheStorageCachelite]]
** [[API17:JCacheStorageCachelite|JCacheStorageCachelite]]
** [[JCacheStorageEaccelerator/11.1|JCacheStorageEaccelerator]]
** [[API17:JCacheStorageEaccelerator|JCacheStorageEaccelerator]]
** [[JCacheStorageFile/11.1|JCacheStorageFile]]
** [[API17:JCacheStorageFile|JCacheStorageFile]]
** [[JCacheStorageMemcache/11.1|JCacheStorageMemcache]]
** [[API17:JCacheStorageMemcache|JCacheStorageMemcache]]
** [[JCacheStorageWincache/11.1|JCacheStorageWincache]]
** [[API17:JCacheStorageWincache|JCacheStorageWincache]]
** [[JCacheStorageXcache/11.1|JCacheStorageXcache]]
** [[API17:JCacheStorageXcache|JCacheStorageXcache]]
===Importing===
===Importing===
<source lang="php">jimport( 'joomla.cache.storage' );</source>
<source lang="php">jimport( 'joomla.cache.storage' );</source>
===See also===
===See also===
* {{JVer|11.1}} '''JCacheStorage source code''' on [[jplatform:cache/storage.php|BitBucket]]
* {{JVer|11.1}} '''JCacheStorage source code''' on [[jplatform:cache/storage.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Cache/11.1|Cache]]
* {{JVer|11.1}} Subpackage [[API17:Subpackage Cache|Cache]]
* [[JCacheStorage|Other versions of JCacheStorage]]
* [[API17:JCacheStorage|Other versions of JCacheStorage]]
{{SeeAlso:JCacheStorage}}
{{SeeAlso:JCacheStorage}}
<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">

Revision as of 00:50, 12 May 2013

Joomla 11.1 JCacheStorage

Description

Template:Description:JCacheStorage [Edit Descripton]

Methods

Visibility Method name Description
public __construct Constructor.
public clean Clean cache for a group given a mode.
public gc Garbage collect expired cache data.
public get Get cached data by id and group.
public getAll Get all cached data.
public lock Lock cached item.
public remove Remove a cached data entry by id and group.
public store Store the data to cache by id and group.
public unlock Unlock cached item.
public static addIncludePath Add a directory where should search for handlers.
public static getInstance Returns a cache storage handler object, only creating it if it doesn't already exist.
public static test Test to see if the storage handler is available.
protected _getCacheId Get a cache_id string from an id/group pair.

Importing

jimport( 'joomla.cache.storage' );

See also

Template:SeeAlso:JCacheStorage [Edit See Also]

User contributed notes

<CodeExamplesForm />