log.info("create JedisClient.");
Properties cacheProps = loadCacheProperties(props);
Integer expiryInSeconds = Integer.decode(cacheProps.getProperty("redis.expiryInSeconds", "120")); // 120 seconds
cacheProperties = cacheProps;
return new JedisClient(createJedisPool(cacheProps), expiryInSeconds);
}