API16:JCacheStorageMemcache/test
From Joomla! Documentation
Description
Test to see if the cache storage is available.
Template:Description:JCacheStorageMemcache/test
Syntax
test()
Returns
boolean True on success, false otherwise.
Defined in
libraries/joomla/cache/storage/memcache.php
Importing
jimport( 'joomla.cache.storage.memcache' );
Source Body
function test()
{
return (extension_loaded('memcache') && class_exists('Memcache'));
}
[Edit See Also] Template:SeeAlso:JCacheStorageMemcache/test
Examples
<CodeExamplesForm />