...
|
...
|
@@ -277,13 +277,20 @@ public class UnionServiceImpl implements IUnionService { |
|
|
value = yhValueOperations.get(key);
|
|
|
log.info("activateUnion with get redis second with key={}, value={}", key, value);
|
|
|
}
|
|
|
|
|
|
if(arr.length==3){
|
|
|
request.setTd(arr[1]+"_"+arr[2]);
|
|
|
key = UNION_KEY + "_" + request.getClientIp() + "_" + request.getTd() + "_" + request.getAppkey();
|
|
|
value = yhValueOperations.get(key);
|
|
|
log.info("activateUnion with get redis third with key={}, value={}", key, value);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if (StringUtils.isEmpty(value)) {
|
|
|
key = UNION_KEY + "_" + request.getClientIp() + "_" + request.getAppkey();
|
|
|
value = yhValueOperations.get(key);
|
|
|
log.info("activateUnion with get redis thred with key={}, value={}", key, value);
|
|
|
log.info("activateUnion with get redis forth with key={}, value={}", key, value);
|
|
|
}
|
|
|
|
|
|
// 如果redis中不存在存在该用户点击信息,则退出
|
...
|
...
|
|