lets assume i have these variables saved in apc,memcached and eaccelerator:

article_1_0 article_1_1 article_3_2 article_3_3 article_2_4

How can i delete all cached variables that starts with article_3_ (they can reach up to 10000) ?

is there any way to list the cached variables ?

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

For APC:

$iterator = new APCIterator('user', '#^article_3_#', APC_ITER_KEY);
foreach($iterator as $entry_name) {
    apc_delete($entry_name);
}

For eaccelerator:

foreach(eaccelerator_list_keys() as $name => $infos) {
    if (preg_match('#^article_3_#', $name)) {
        eaccelerator_rm($name);
    }
}

For memcached, look at @rik's answer


The general solution for expiring multiple keys at once is to namespace them. For expiring them, you just have to change the namespace:

Say you have a group of keys "article_3_1", "article_3_2", .... You can store them like this:

$ns = apc_fetch('article_3_namespace');
apc_store($ns."_article_3_1", $value);
apc_store($ns."_article_3_2", $value);

Fetch them like this:

$ns = apc_fetch('article_3_namespace');
apc_fetch($ns."_article_3_1");

And expire them all by just incrementing the namespace:

apc_inc('article_3_namespace');
link|improve this answer
1  
+1 for APCIterator, though it does require APC 3.1.1 or above – Mark Baker Jan 24 '11 at 18:04
hi , what is the first parameter in APCIterator "user" ? i couldn't find anything about it in the manual ! – Ronan Dejhero Jan 26 '11 at 11:25
It means user cache entries; user cache entries are the variables set by apc_store(), etc. The other possible value for this parameter is file; file cache entries are the cached scripts. – arnaud576875 Jan 26 '11 at 11:41
feedback

There is a way to retrieve all keys from memcache but it's very expensive.

link|improve this answer
feedback

Although the docs say APCIterator is available in apc >= 3.1.1, I'm on several systems that claim to have apc 3.1.9, however there is no APCIterator present. If you don't have APCIterator at your disposal, give something like this a whirl:

$aCacheInfo = apc_cache_info('user');

foreach($aCacheInfo['cache_list'] as $_aCacheInfo)
    if(strpos($_aCacheInfo['info'], 'key_prefix:') === 0)
        apc_delete($_aCacheInfo['info']);

In this example we're checking for a prefix in the key, but you could use preg_match et. al and achieve something closer to what APCIterator provides.

link|improve this answer
feedback

If there is possibility to use alternatives for memcached, scache supports structured keyspaces. With it you could store data to nested paths :

scache_shset($conn, 'article/1/0', $data10);
scache_shset($conn, 'article/3/0', $data30);
scache_shset($conn, 'article/3/1', $data31);

and eventually destroy data by deleting the parent node

scache_shunset($conn, 'article/3');
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.