Authored by 梁志锋

缓存时间统一缩短为5分钟

... ... @@ -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);
}
}
}
... ...
... ... @@ -630,7 +630,7 @@ class UserModel
}
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
else {
Cache::set($key, $result, 1800); // 缓存30分钟
Cache::set($key, $result, 300); // 缓存5分钟
}
}
... ...
... ... @@ -58,7 +58,7 @@ class SearchModel
}
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
else {
Cache::set($key, $result, 1800); // 缓存30分钟
Cache::set($key, $result, 300); // 缓存5分钟
}
}
... ... @@ -116,7 +116,7 @@ class SearchModel
}
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
else {
Cache::set($key, $result, 1800); // 缓存30分钟
Cache::set($key, $result, 300); // 缓存5分钟
}
}
... ...