modify search list cache 10min to 30min
Showing
2 changed files
with
2 additions
and
2 deletions
@@ -112,7 +112,7 @@ class NewsaleData | @@ -112,7 +112,7 @@ class NewsaleData | ||
112 | 112 | ||
113 | $param['client_secret'] = Sign::getSign($param); | 113 | $param['client_secret'] = Sign::getSign($param); |
114 | 114 | ||
115 | - return Yohobuy::get(Yohobuy::API_URL, $param, 600); // 缓存10分钟 | 115 | + return Yohobuy::get(Yohobuy::API_URL, $param, 1800); // 缓存30分钟 |
116 | } | 116 | } |
117 | 117 | ||
118 | /** | 118 | /** |
@@ -55,7 +55,7 @@ class SearchModel | @@ -55,7 +55,7 @@ class SearchModel | ||
55 | } | 55 | } |
56 | // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存 | 56 | // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存 |
57 | else { | 57 | else { |
58 | - Cache::set($key, $result, 600); // 缓存10分钟 | 58 | + Cache::set($key, $result, 1800); // 缓存30分钟 |
59 | } | 59 | } |
60 | } | 60 | } |
61 | 61 |
-
Please register or login to post a comment