API15

JCacheStorageMemcache/store

From Joomla! Documentation

< API15:JCacheStorageMemcache
Revision as of 17:13, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Store the data to memcache by id and group <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JCacheStorageMemcache/store|Edit Descrip...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API15" 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]

Store the data to memcache by id and group

[Edit Descripton]

Template:Description:JCacheStorageMemcache/store

Syntax[edit]

store($id, $group, $data)
Parameter Name Default Value Description
$id $id The cache data id
$group $group The cache data group
$data $data The data to store in cache

Returns[edit]

boolean True on success, false otherwise

Defined in[edit]

libraries/joomla/cache/storage/memcache.php

Importing[edit]

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

Source Body[edit]

function store($id, $group, $data)
{
        $cache_id = $this->_getCacheId($id, $group);
        return $this->_db->set($cache_id, $data, $this->_compress, $this->_lifetime);
}

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

Examples[edit]

<CodeExamplesForm />