yzh52521 / symfony-cache
description
v1.0.2
2023-03-17 06:40 UTC
Requires
- php: >=7.4
- doctrine/dbal: ^3.6
- symfony/cache: ^5.4.5|^6.0
README
symfony cache for webman
安装
composer require yzh52521/symfony-cache
配置文件
config/cache.php
支持驱动
- apc
- array
- file 本地缓存
- redis 缓存
- memcached 缓存
- database 数据库缓存
示例
namespace app\controller; use support\Request; use yzh52521\SymfonyCache\Cache; class UserController { public function db(Request $request) { $key = 'test_key'; Cache::set($key, rand()); return response(Cache::get($key)); } }
访问多个缓存存储
$value = Cache::store('file')->get('foo'); Cache::store('redis')->set('bar', 'baz', 600); // 10 Minutes
从缓存中检索
$value = Cache::get('key'); $value = Cache::get('key', 'default');
检查是否存在
if (Cache::has('key')) { // }
删除
Cache::delete('key');