https://github.com/istyle-inc/laravel-dual-cache
dual cache provider
https://github.com/istyle-inc/laravel-dual-cache
cache laravel package php7
Last synced: 7 months ago
JSON representation
dual cache provider
- Host: GitHub
- URL: https://github.com/istyle-inc/laravel-dual-cache
- Owner: istyle-inc
- License: mit
- Created: 2018-07-09T13:06:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-19T09:38:15.000Z (about 7 years ago)
- Last Synced: 2025-02-03T21:35:16.277Z (8 months ago)
- Topics: cache, laravel, package, php7
- Language: PHP
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Istyle\LaravelDualCache
[](https://travis-ci.org/istyle-inc/laravel-dual-cache)
[](https://coveralls.io/github/istyle-inc/laravel-dual-cache?branch=master)
[](https://scrutinizer-ci.com/g/istyle-inc/laravel-dual-cache/?branch=master)[](https://packagist.org/packages/istyle-inc/laravel-dual-cache)
[](https://packagist.org/packages/istyle-inc/laravel-dual-cache)
[](https://packagist.org/packages/istyle-inc/laravel-dual-cache)## Install
required >= PHP 7.0
$ composer require istyle-inc/laravel-dual-cache
**Supported Auto-Discovery(^Laravel5.5)**
## Usage
added config/cache.php
### example
```php
'your-cache-driver-name' => [
'driver' => 'dual-cache',
'primary' => 'memcached',
'secondary' => 'file',
],
```