...
|
...
|
@@ -103,7 +103,7 @@ public class RedisHashCache { |
|
|
logger.warn("RedisHashCache put failed!!! value {}", v);
|
|
|
return;
|
|
|
}
|
|
|
logger.info("RedisHashCache put, cacheKey is: {},obj is: {},hashkey is {},value is {}", cacheKey,obj, hashKey,value);
|
|
|
logger.debug("RedisHashCache put, cacheKey is: {},obj is: {},hashkey is {},value is {}", cacheKey,obj, hashKey,value);
|
|
|
RedisKeyBuilder redisKeyBuilder = RedisKeyBuilder.newInstance().appendFixed(cacheKey).appendVar(obj);
|
|
|
this.hashOperations.put(redisKeyBuilder, hashKey, v);
|
|
|
this.yHRedisTemplate.longExpire(redisKeyBuilder, timeout, unit);
|
...
|
...
|
|