PHP code example of qingbing / zf-wave-cache

1. Go to this page and download the library: Download qingbing/zf-wave-cache library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

qingbing / zf-wave-cache example snippets



// Redis 远端数据缓存组件,可参考redis,db等
$remoteCache = Object::create([
    'class' => RemoteRedisCache::class,
    'host' => '172.16.37.145',
    'port' => 6379,
    'password' => 'iampassword',
    'dbIndex' => 0,
]);

// Yac 本地高速缓存
$localCache = Object::create([
    'class' => LocalYacCache::class,
    'prefix' => 'zf:',
]);
// memcache 本地高速缓存
$localCache = Object::create([
    'class' => LocalMemCache::class,
    'host' => '172.16.37.128',
    'port' => 10000,
]);

// 二级缓存实例化
$cache = Object::create([
    'class' => WaveCache::class,
    'remoteCache' => $remoteCache,
    'localCache' => $localCache,
]);

$key = 'db:config';
$callback = function () {
    return [
        'host' => "localhost",
        'time' => time(),
    ];
};
/* @var $cache WaveCache */
// 设置缓存
$cache->set($key, $callback, 5);

// 获取缓存
$data = $cache->get($key, $callback, 5);
var_dump($data);

$status = $cache->del($key);
var_dump($status);