PHP code example of qingbing / zf-yac-cache
1. Go to this page and download the library: Download qingbing/zf-yac-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-yac-cache example snippets
// 实例化
$cache = Object::create([
'class' => YacCache::class,
]);
/* @var $cache ACache */
// ====== 普通用法 ======
// 生成一个缓存
$cache->set('name', 'qingbing', 20);
$cache->set('sex', 'nan');
$value = $cache->get('name');
var_dump($value);
$cache->delete('sex');
var_dump($cache);
$has = $cache->has('grade');
var_dump($has);
$has = $cache->has('name');
var_dump($has);
$cache->clear();
var_dump($cache);
// ====== 批量用法 ======
$cache->setMultiple([
'age' => 19,
'class' => 1,
'grade' => 2,
], 2000);
$data = $cache->getMultiple([
'class',
'name',
'grade',
'age',
]);
var_dump($data);
$cache->deleteMultiple(['class', 'name']);
// ====== 键、值随意化 ======
$key = ["sex", "name"];
// 设置缓存
$status = $cache->set($key, ["女", ["xxx"]]);
var_dump($status);
// 获取缓存
$data = $cache->get($key);
var_dump($data);
// 删除缓存
$status = $cache->delete($key);
var_dump($status);