|
@@ -44,12 +44,12 @@ public class DouHotFlowPoolRecallStrategy implements RecallStrategy {
|
|
|
}
|
|
|
|
|
|
String redisKey = String.format(RedisKeyConstants.DouHot.ITEM_REDIS_KEY_FORMAT, RecallUtils.douHotProvinceConvert(param.getProvince()), "1");
|
|
|
- log.info("[DouHot recall redisKey] {}", redisKey);
|
|
|
+ // log.info("[DouHot recall redisKey] {}", redisKey);
|
|
|
Set<ZSetOperations.TypedTuple<String>> redisValues = redisTemplate.opsForZSet().rangeWithScores(redisKey, 0, 10000000);
|
|
|
|
|
|
|
|
|
if (CollectionUtils.isEmpty(redisValues)) {
|
|
|
- log.info("[DouHot recall is empty]");
|
|
|
+ log.error("[DouHot recall is empty]. redisKey: {}", redisKey);
|
|
|
return Collections.emptyList();
|
|
|
}
|
|
|
|