wearesho-team/yii2-simple-cache-adapter

安装次数: 13,254

依赖者: 0

建议者: 0

安全: 0

星星: 0

关注者: 3

分支: 5

类型:yii2-extension

1.1.0 2020-06-17 00:24 UTC

This package is auto-updated.

Last update: 2024-09-17 09:18:00 UTC


README

Latest Stable Version Total Downloads Build Status codecov

SimpleCache (PSR-16) 适配器用于 Yii2 缓存

该库最初由 devonliu02 开发,现在由 Wearesho Team 维护

安装

composer require wearesho-team/yii2-simple-cache-adapter

使用

<?php

use Wearesho\SimpleCache;

$adapter = new SimpleCache\Adapter; // will use \Yii::$app->cache by default

$customAdapter = new SimpleCache\Adapter([
    'cache' => [
        'class' => \yii\caching\ArrayCache::class, // or your custom \yii\caching\CacheInterface implementation
    ],
]);

贡献者

许可证

MIT