如何使用php查询memcached以获取存储中所有密钥的列表?

前端之家收集整理的这篇文章主要介绍了如何使用php查询memcached以获取存储中所有密钥的列表?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要将memcached复制到另一个键值系统(couchbase).如何查询memcached服务器的内容获取其中的内容列表,以便我可以将其复制?
memcache> = 2.0.0
function getMemcacheKeys() {
    $memcache = new Memcache;
    $memcache->connect('127.0.0.1',11211) 
       or die ("Could not connect to memcache server");

    $list = array();
    $allSlabs = $memcache->getExtendedStats('slabs');
    $items = $memcache->getExtendedStats('items');
    foreach($allSlabs as $server => $slabs) {
        foreach($slabs AS $slabId => $slabMeta) {
            $cdump = $memcache->getExtendedStats('cachedump',(int)$slabId);
            foreach($cdump AS $keys => $arrVal) {
                if (!is_array($arrVal)) continue;
                foreach($arrVal AS $k => $v) {                   
                    echo $k .'<br>';
                }
            }
        }
    }   
}
原文链接:https://www.f2er.com/php/138857.html

猜你在找的PHP相关文章