|
|
@@ -57,8 +57,14 @@ class Ajax extends AdminController
|
|
|
public function clearCache()
|
|
|
{
|
|
|
CacheServices::clear();
|
|
|
- RedisCache::keyDel("caches*");
|
|
|
+ RedisCache::keyDel("caches:config*");
|
|
|
+ RedisCache::keyDel("caches:sysconfig*");
|
|
|
+ RedisCache::keyDel("caches:articles*");
|
|
|
+ RedisCache::keyDel("caches:banners*");
|
|
|
+ RedisCache::keyDel("caches:goods*");
|
|
|
|
|
|
+ // 其他临时缓存
|
|
|
+ RedisCache::keyDel("caches:temp*");
|
|
|
Cache::clear();
|
|
|
$this->success('清理缓存成功');
|
|
|
}
|