leonsw/cache

此包已被放弃且不再维护。作者建议使用 leonsw/cache 包。

Leonsw Cache

维护者

详细信息

github.com/leonsw-cloud/cache

此包尚未发布版本,且信息有限。


README

该包...

使用方法

$cache = $container->get(CacheManager::class)->getDriver('db');

cache.php

return [
    'db' => [
        'driver' => Leonsw\Cache\DatabaseDriver::class,
        'packer' => Hyperf\Utils\Packer\PhpSerializerPacker::class,
        'prefix' => 'c:',
        'table' => 'cache',
    ],
];