yzh52521/symfony-cache

v1.0.2 2023-03-17 06:40 UTC

This package is auto-updated.

Last update: 2024-04-17 09:24:25 UTC


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');