当increment 为空时会报警告,try catch是不捕获警告的
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -75,7 +75,7 @@ class Cache | @@ -75,7 +75,7 @@ class Cache | ||
75 | // 当接口异常,一级缓存没取到数据的情况 | 75 | // 当接口异常,一级缓存没取到数据的情况 |
76 | if ($node === 'slave') { | 76 | if ($node === 'slave') { |
77 | $incrementKey = self::makeKey('_increment_' . $key, 'slave'); | 77 | $incrementKey = self::makeKey('_increment_' . $key, 'slave'); |
78 | - $incrementValue = HoodCache::Memcached('slave')->get($incrementKey); | 78 | + $incrementValue = intval(HoodCache::Memcached('slave')->get($incrementKey)); |
79 | // 接口调用失败累计5次之后,回填二级缓存数据到一级缓存, 重置计数值为0 | 79 | // 接口调用失败累计5次之后,回填二级缓存数据到一级缓存, 重置计数值为0 |
80 | if (is_int($incrementValue) && $incrementValue > 5) { | 80 | if (is_int($incrementValue) && $incrementValue > 5) { |
81 | HoodCache::Memcached('master')->set(self::makeKey($key, 'master'), $result, 300); | 81 | HoodCache::Memcached('master')->set(self::makeKey($key, 'master'), $result, 300); |
-
Please register or login to post a comment