JCacheStorage: Difference between revisions
From Joomla! Documentation
Layout updates |
m preparing for archive only |
||
| (6 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
=={{JVer|11.1}} JCacheStorage== | |||
===Description=== | |||
JCacheStorage is an abstract class. The class needs to be extended by concrete storage handlers. The Joomla Framework currently provides the handlers JCacheStorageApc, JCacheStorageEaccelarator, JCacheStorageFile, JCacheStorageMemcache, JCacheStorageXCache, JCacheStorageXcache | |||
{{ | |||
== | |||
=== | |||
===Methods=== | ===Methods=== | ||
{| class="wikitable sortable" | {| class="wikitable sortable" | ||
|- | |- | ||
!Visibility | |||
!Method name | !Method name | ||
!Description | !Description | ||
|- | |- | ||
|[[JCacheStorage::__construct | |public | ||
|[[API17:JCacheStorage::__construct|__construct]] | |||
|Constructor. | |Constructor. | ||
|- | |- | ||
|[[JCacheStorage::clean | |public | ||
|[[API17:JCacheStorage::clean|clean]] | |||
|Clean cache for a group given a mode. | |Clean cache for a group given a mode. | ||
|- | |- | ||
|[[JCacheStorage::gc | |public | ||
|[[API17:JCacheStorage::gc|gc]] | |||
|Garbage collect expired cache data. | |Garbage collect expired cache data. | ||
|- | |- | ||
|[[JCacheStorage::get | |public | ||
|[[API17:JCacheStorage::get|get]] | |||
|Get cached data by id and group. | |Get cached data by id and group. | ||
|- | |- | ||
|[[JCacheStorage::getAll | |public | ||
|[[API17:JCacheStorage::getAll|getAll]] | |||
|Get all cached data. | |Get all cached data. | ||
|- | |- | ||
|[[JCacheStorage::lock | |public | ||
|[[API17:JCacheStorage::lock|lock]] | |||
|Lock cached item. | |Lock cached item. | ||
|- | |- | ||
|[[JCacheStorage::remove | |public | ||
|[[API17:JCacheStorage::remove|remove]] | |||
|Remove a cached data entry by id and group. | |Remove a cached data entry by id and group. | ||
|- | |- | ||
|[[JCacheStorage::store | |public | ||
|[[API17:JCacheStorage::store|store]] | |||
|Store the data to cache by id and group. | |Store the data to cache by id and group. | ||
|- | |- | ||
|[[JCacheStorage::unlock | |public | ||
|[[API17:JCacheStorage::unlock|unlock]] | |||
|Unlock cached item. | |Unlock cached item. | ||
|- | |- | ||
|[[JCacheStorage::addIncludePath | |public static | ||
|[[API17:JCacheStorage::addIncludePath|addIncludePath]] | |||
|Add a directory where should search for handlers. | |Add a directory where should search for handlers. | ||
|- | |- | ||
|[[JCacheStorage::getInstance | |public static | ||
|[[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. | ||
|- | |- | ||
|[[JCacheStorage::test | |public static | ||
|[[API17:JCacheStorage::test|test]] | |||
|Test to see if the storage handler is available. | |Test to see if the storage handler is available. | ||
|- | |- | ||
|[[JCacheStorage::_getCacheId | |protected | ||
|[[API17:JCacheStorage::_getCacheId|_getCacheId]] | |||
|Get a cache_id string from an id/group pair. | |Get a cache_id string from an id/group pair. | ||
|- | |- | ||
|} | |} | ||
* '''Defined in''' libraries/joomla/cache/storage.php | |||
* '''Extended by''' | |||
** [[API17:JCacheStorageApc|JCacheStorageApc]] | |||
** [[API17:JCacheStorageCachelite|JCacheStorageCachelite]] | |||
** [[API17:JCacheStorageEaccelerator|JCacheStorageEaccelerator]] | |||
** [[API17:JCacheStorageFile|JCacheStorageFile]] | |||
** [[API17:JCacheStorageMemcache|JCacheStorageMemcache]] | |||
** [[API17:JCacheStorageWincache|JCacheStorageWincache]] | |||
** [[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=== | ||
* JCacheStorage source code | * {{JVer|11.1}} '''JCacheStorage source code''' on [[jplatform:cache/storage.php|BitBucket]] | ||
* [[ | * {{JVer|11.1}} Subpackage [[API17:Subpackage Cache|Cache]] | ||
* [[API17:JCacheStorage|Other versions of JCacheStorage]] | |||
===User contributed notes=== | |||
===Examples=== | === Code Examples === | ||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JCacheStorage | category=JCacheStorage | ||
namespace=CodeExample | |||
category=ClassExample | category=ClassExample | ||
include=* | include=* | ||
namespace=CodeExample | |||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude> | <noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude> | ||
Latest revision as of 02:25, 25 March 2017
JCacheStorage
Description
JCacheStorage is an abstract class. The class needs to be extended by concrete storage handlers. The Joomla Framework currently provides the handlers JCacheStorageApc, JCacheStorageEaccelarator, JCacheStorageFile, JCacheStorageMemcache, JCacheStorageXCache, JCacheStorageXcache
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. |
- Defined in libraries/joomla/cache/storage.php
- Extended by
Importing
jimport( 'joomla.cache.storage' );
See also
JCacheStorage source code on BitBucket
Subpackage Cache- Other versions of JCacheStorage
User contributed notes
Code Examples