rapidez/laravel-multi-cache 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

rapidez/laravel-multi-cache

最新稳定版本:2.1.0

Composer 安装命令:

composer require rapidez/laravel-multi-cache

包简介

Combine multiple caches in Laravel

README 文档

README

Allows you to use multiple Laravel cache stores as one. Retrieves items from the first cache they are found in.

An example use is to have an array cache and Redis cache. Fetch items from the array cache first (faster), and from Redis if the key was not found. The value will be stored in the array cache if it was found in Redis.

Installation

composer require rapidez/laravel-multi-cache

The service provider will autoload, if you have disabled this add this to your config/app.php providers array:

Rapidez\LaravelMultiCache\MultiStoreServiceProvider::class

Add the multi store to your config/cache.php stores array:

    'stores' => [
        'array' => [
            'driver' => 'array',
        ],
        'database' => [
            'driver' => 'database',
            'table'  => 'cache',
            'connection' => null,
        ],
        'redis' => [
            'driver' => 'redis',
            'connection' => 'redis-cache',
        ],
        'multi' => [
            'driver' => 'multi',
            'stores' => [
                'array',
                'redis',
                'database'
            ],
            'sync_missed_stores' => true,
        ]
    ],

Set your CACHE_DRIVER in .env:

CACHE_DRIVER=multi

Usage

The cache implements the standard cache interface, so you use all the normal get() and put() methods.

get($key)

Returns the value from the first store $key is found in (in the order defined in stores). The value will be saved in any higher 'stores'. e.g. If the value is not found it array, but is in redis, the value from redis will be returned and put in array, but it will not be put in database. This behaviour can be disabled by setting sync_missed_stores => false in config.

put($key, $value, $minutes)

Stores an item in all of the stores.

All of the other methods (increment(), forget(), flush(), etc.) perform the operation on all of the stores.

统计信息

  • 总下载量: 42.44k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 1
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 1
  • Forks: 6
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-10-15