...
|
...
|
@@ -191,7 +191,7 @@ class IndexModel |
|
|
$result = Cache::get($key, 'master');
|
|
|
if (empty($result)) {
|
|
|
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
|
|
|
Cache::set($key, $data, 1800);
|
|
|
Cache::set($key, $data, 300);
|
|
|
}
|
|
|
}
|
|
|
}
|
...
|
...
|
@@ -299,7 +299,7 @@ class IndexModel |
|
|
$result = Cache::get($key, 'master');
|
|
|
if (empty($result)) {
|
|
|
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
|
|
|
Cache::set($key, $article, 1800);
|
|
|
Cache::set($key, $article, 300);
|
|
|
}
|
|
|
}
|
|
|
}
|
...
|
...
|
|