From 4920067e4e9a107941da2d968f44bcee7a77efd7 Mon Sep 17 00:00:00 2001 From: xinningsu Date: Mon, 11 Jan 2021 14:20:19 +0800 Subject: [PATCH] using macro instead of override --- config/easy-cache.php | 53 ------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 config/easy-cache.php diff --git a/config/easy-cache.php b/config/easy-cache.php deleted file mode 100644 index 0bb91e1..0000000 --- a/config/easy-cache.php +++ /dev/null @@ -1,53 +0,0 @@ - 3600, - - /* - |-------------------------------------------------------------------------- - | Default Cache Store - |-------------------------------------------------------------------------- - | - | Value can be the store defined in config/cache.php of laravel project. - | If null, using laravel default cache store. - | - */ - - 'store' => null, - - /* - |-------------------------------------------------------------------------- - | Global Cache Key Prefix - |-------------------------------------------------------------------------- - | - | If prefix defined, each cache key will add this prefix in the front. - | So it can easily refresh the whole cache by changing this prefix. - | - */ - - 'prefix' => null, - - - /* - |-------------------------------------------------------------------------- - | Refresh key - |-------------------------------------------------------------------------- - | - | If this specified, you can refresh a page cache via query string, such as - | 'refresh_key' => 'clear_cache', then http://localhots/?clear_cache=1 will - | refresh all the cache of that page. - | - */ - 'refresh_key' => null, -];