HHHHHHGGGGGG

Results 1 issues of HHHHHHGGGGGG

版本信息:jetcache-starter-redis-lettuce 2.7.3 问题:RedisLettuceCache实现类在do_GET 等方法(比如:do_GET_ALL也有同样的问题)中对于valueDecoder.appyly() 捕获的异常,并没有正确处理,导致打印到日志中异常是redis返回的异常而不是valueDecoder的异常,返回结果中也没有包含对应正常的异常,故导致如果decoder失败,在日志和结果信息中无法获取/看到预期的错误信息。 具体说明如下: ``` protected CacheGetResult do_GET(K key) { try { byte[] newKey = buildKey(key); RedisFuture future = stringAsyncCommands.get(newKey); CacheGetResult result = new CacheGetResult(future.handle((valueBytes, ex) -> {...