|
TYPO3 API
SVNRelease
|


Public Member Functions | |
| set ($entryIdentifier, $string, $tags=array(), $lifetime=NULL) | |
| get ($entryIdentifier) | |
| getByTag ($tag) | |
Definition at line 36 of file class.t3lib_cache_frontend_stringfrontend.php.
| t3lib_cache_frontend_StringFrontend::get | ( | $ | entryIdentifier | ) |
Loads a variable value from the cache.
| string | Identifier of the cache entry to fetch |
Implements t3lib_cache_frontend_Frontend.
Definition at line 83 of file class.t3lib_cache_frontend_stringfrontend.php.
References t3lib_cache_frontend_AbstractFrontend\isValidEntryIdentifier().
| t3lib_cache_frontend_StringFrontend::getByTag | ( | $ | tag | ) |
Finds and returns all cache entries which are tagged by the specified tag.
| string | $tag | The tag to search for |
Implements t3lib_cache_frontend_Frontend.
Definition at line 101 of file class.t3lib_cache_frontend_stringfrontend.php.
References t3lib_cache_frontend_AbstractFrontend\$identifier, and t3lib_cache_frontend_AbstractFrontend\isValidTag().
| t3lib_cache_frontend_StringFrontend::set | ( | $ | entryIdentifier, |
| $ | string, | ||
| $ | tags = array(), |
||
| $ | lifetime = NULL |
||
| ) |
Saves the value of a PHP variable in the cache. Note that the variable will be serialized if necessary.
| string | An identifier used for this cache entry |
| string | The variable to cache |
| array | Tags to associate with this cache entry |
| integer | Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited liftime. |
Implements t3lib_cache_frontend_Frontend.
Reimplemented in t3lib_cache_frontend_PhpFrontend.
Definition at line 49 of file class.t3lib_cache_frontend_stringfrontend.php.
References t3lib_cache_frontend_AbstractFrontend\isValidEntryIdentifier(), and t3lib_cache_frontend_AbstractFrontend\isValidTag().
1.7.5.1