API15:JCacheStorageMemcache/test
From Joomla! Documentation
Description
Test to see if the cache storage is available.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
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'));
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples