Authored by 周奇琪

Merge branch 'master' of git.dev.yoho.cn:web/yohobuy

@@ -33,7 +33,7 @@ class Cache @@ -33,7 +33,7 @@ class Cache
33 * @param int $expire 缓存有效期(单位秒, 0表示永久) 33 * @param int $expire 缓存有效期(单位秒, 0表示永久)
34 * @return void 34 * @return void
35 */ 35 */
36 - public static function set($key, $value, $expire = 3600) 36 + public static function set($key, $value, $expire = 300)
37 { 37 {
38 try { 38 try {
39 // WINDOWS 39 // WINDOWS
@@ -191,7 +191,7 @@ class IndexModel @@ -191,7 +191,7 @@ class IndexModel
191 $result = Cache::get($key, 'master'); 191 $result = Cache::get($key, 'master');
192 if (empty($result)) { 192 if (empty($result)) {
193 // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存 193 // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
194 - Cache::set($key, $data, 3600); 194 + Cache::set($key, $data, 1800);
195 } 195 }
196 } 196 }
197 } 197 }
@@ -299,7 +299,7 @@ class IndexModel @@ -299,7 +299,7 @@ class IndexModel
299 $result = Cache::get($key, 'master'); 299 $result = Cache::get($key, 'master');
300 if (empty($result)) { 300 if (empty($result)) {
301 // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存 301 // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
302 - Cache::set($key, $article, 3600); 302 + Cache::set($key, $article, 1800);
303 } 303 }
304 } 304 }
305 } 305 }
@@ -57,7 +57,7 @@ class ListModel @@ -57,7 +57,7 @@ class ListModel
57 } 57 }
58 // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存 58 // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
59 else { 59 else {
60 - Cache::set($key, $result, 1800); // 缓存30分钟 60 + Cache::set($key, $result, 300); // 缓存5分钟
61 } 61 }
62 } 62 }
63 63
@@ -140,7 +140,7 @@ class ListModel @@ -140,7 +140,7 @@ class ListModel
140 } 140 }
141 // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存 141 // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
142 else { 142 else {
143 - Cache::set($key, $result, 1800); // 缓存30分钟 143 + Cache::set($key, $result, 300); // 缓存5分钟
144 } 144 }
145 } 145 }
146 146
@@ -58,7 +58,7 @@ class SearchModel @@ -58,7 +58,7 @@ class SearchModel
58 } 58 }
59 // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存 59 // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
60 else { 60 else {
61 - Cache::set($key, $result, 1800); // 缓存30分钟 61 + Cache::set($key, $result, 600); // 缓存10分钟
62 } 62 }
63 } 63 }
64 64
@@ -116,7 +116,7 @@ class SearchModel @@ -116,7 +116,7 @@ class SearchModel
116 } 116 }
117 // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存 117 // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
118 else { 118 else {
119 - Cache::set($key, $result, 1800); // 缓存30分钟 119 + Cache::set($key, $result, 600); // 缓存10分钟
120 } 120 }
121 } 121 }
122 122