...
|
...
|
@@ -208,10 +208,13 @@ public class UnionServiceImpl implements IUnionService { |
|
|
}
|
|
|
if (StringUtils.isEmpty(value)) {
|
|
|
String[] arr = request.getTd().split("_");
|
|
|
request.setTd(arr[2] + "_" + arr[3]);
|
|
|
key = UNION_KEY + "_" + request.getClientIp() + "_" + request.getTd();
|
|
|
value = yhValueOperations.get(key);
|
|
|
log.info("activateUnion with get redis second with key={}, value={}", key, value);
|
|
|
if (arr.length > 3) {
|
|
|
request.setTd(arr[2] + "_" + arr[3]);
|
|
|
key = UNION_KEY + "_" + request.getClientIp() + "_" + request.getTd();
|
|
|
value = yhValueOperations.get(key);
|
|
|
log.info("activateUnion with get redis second with key={}, value={}", key, value);
|
|
|
}
|
|
|
|
|
|
if (StringUtils.isEmpty(value)) {
|
|
|
key = UNION_KEY + "_" + request.getClientIp();
|
|
|
value = yhValueOperations.get(key);
|
...
|
...
|
|