Skip to content

Commit

Permalink
remove System.out.println()
Browse files Browse the repository at this point in the history
  • Loading branch information
qiujiayu committed Apr 7, 2015
1 parent c36f99d commit 4fbcb82
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ public CacheWrapper<Serializable> get(final String cacheKey) {
try {
shardedJedis=shardedJedisPool.getResource();
Jedis jedis=shardedJedis.getShard(cacheKey);
System.out.println(jedis.getClient().getHost() + ":" + jedis.getClient().getPort());
byte bytes[]=jedis.get(keySerializer.serialize(cacheKey));
res=(CacheWrapper<Serializable>)valueSerializer.deserialize(bytes);
} catch(Exception ex) {
Expand Down Expand Up @@ -139,7 +138,6 @@ public void delete(final String cacheKey) {
autoLoadHandler.resetAutoLoadLastLoadTime(tmpKey);
}
}
System.out.println(cacheKey+"-->" + jedis.getClient().getHost() + ":" + jedis.getClient().getPort()+" size:"+keys.size());
}
} catch(Exception ex) {
logger.error(ex.getMessage(), ex);
Expand Down

0 comments on commit 4fbcb82

Please sign in to comment.