public T getResult() {
T result = null;
try {
result = execute();
} catch (Exception e) {
//throw new RuntimeException("Redis execute exception", e);
result = null;
this.shardedJedisPool.returnBrokenResource(jedis);
} finally {
if (jedis != null) {
this.shardedJedisPool.returnResource(jedis);
}
}
return result;
}
如果出現異常這塊已經進行了處理 但是在get redis服務器上的key值時 有時(偶爾)會得到 PONG 和 時間戳數字 這時程序就會從受到影響導致一些數據不正確 百思不得其解 不知道有人碰到過類似的問題嗎
ringa_lee