String currencyIdKey = toRedisKey(currency);
String uniqueId = jedis.hget(currencyIdKey, UNIQUE_ID);
if (uniqueId != null) {
String daysKey = toRedisKey(UniqueId.parse(uniqueId)) + "-DAYS";
if (jedis.zscore(daysKey, dateToCheck.toString()) != null) {
result = true;
}
}
getJedisPool().returnResource(jedis);