修复新品到着,折扣专区页面缓存设置异常的bug
Showing
1 changed file
with
2 additions
and
2 deletions
@@ -196,11 +196,11 @@ class NewsaleModel | @@ -196,11 +196,11 @@ class NewsaleModel | ||
196 | if (USE_CACHE) { | 196 | if (USE_CACHE) { |
197 | // 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据. | 197 | // 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据. |
198 | if (empty($result)) { | 198 | if (empty($result)) { |
199 | - $result = Cache::get(CacheConfig::KEY_ACTION_PRODUCT_NEWSALE_INDEX_BOYS, 'slave'); | 199 | + $result = Cache::get($cacheKey, 'slave'); |
200 | } | 200 | } |
201 | // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存 | 201 | // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存 |
202 | else { | 202 | else { |
203 | - Cache::set(CacheConfig::KEY_ACTION_PRODUCT_NEWSALE_INDEX_BOYS, $result); | 203 | + Cache::set($cacheKey, $result); |
204 | } | 204 | } |
205 | } | 205 | } |
206 | 206 |
-
Please register or login to post a comment