API15

API15:JCacheStorageMemcache/remove

From Joomla! Documentation

Revision as of 22:13, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Remove a cached data entry by id and group <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JCacheStorageMemcache/remove|Edit Descri...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Remove a cached data entry by id and group

[Edit Descripton]

Template:Description:JCacheStorageMemcache/remove

Syntax

remove($id, $group)
Parameter Name Default Value Description
$id $id The cache data id
$group $group The cache data group

Returns

boolean True on success, false otherwise

Defined in

libraries/joomla/cache/storage/memcache.php

Importing

jimport( 'joomla.cache.storage.memcache' );

Source Body

function remove($id, $group)
{
        $cache_id = $this->_getCacheId($id, $group);
        return $this->_db->delete($cache_id);
}

[Edit See Also] Template:SeeAlso:JCacheStorageMemcache/remove

Examples

<CodeExamplesForm />