@Override
public boolean fileExists(String filename) throws IOException {
boolean ret = false;
ShardedJedis rds = redisPool.getResource();
ret = rds.hexists(getDirNameBytes(), filename.getBytes());
redisPool.returnResourceObject(rds);
return ret;
}
@Override