API16

JCacheStorageEaccelerator/remove

From Joomla! Documentation

< API16:JCacheStorageEaccelerator
Revision as of 17:38, 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:JCacheStorageEaccelerator/remove|Edit De...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Remove a cached data entry by id and group

[Edit Descripton]

Template:Description:JCacheStorageEaccelerator/remove

Syntax[edit]

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

Returns[edit]

boolean True on success, false otherwise

Defined in[edit]

libraries/joomla/cache/storage/eaccelerator.php

Importing[edit]

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

Source Body[edit]

function remove($id, $group)
{
        $cache_id = $this->_getCacheId($id, $group);
        eaccelerator_rm($cache_id.'_expire');
        return eaccelerator_rm($cache_id);
}

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

Examples[edit]

<CodeExamplesForm />