nsrosenqvist/soma-cache

SOMA框架的Symfony缓存模块

1.0.1 2020-06-09 13:05 UTC

This package is auto-updated.

Last update: 2024-09-09 22:21:08 UTC


README

安装

composer require nsrosenqvist/soma-cache

使用

首先注册服务提供者。

示例配置

<?php return [
    'default' => 'files',

    'stores' => [
        'files' => [
            'driver' => 'filesystem',
            'directory' => get_path('cache').'/files',
        ],
    ],
];

要了解如何配置所有支持的 缓存适配器,请查看在 CacheProvider::resolveAdapter 中如何处理配置配置处理方式

许可协议

MIT