public boolean hExists(String key, String field) throws Exception {
Jedis jedis = null;
try {
jedis = this.jedisPool.getResource();
boolean ret = jedis.hexists(SafeEncoder.encode(key),
SafeEncoder.encode(field));
LOG.info("hexists key:" + key + " field:" + field);
return ret;
} catch (Exception e) {