My question is pretty explanatory, I'm not able to access a remote jedis server using the above statement.Here is a bit detail abt the code:
static JedisPool pool; private Jedis jedis;
static { pool = new JedisPool(new JedisPoolConfig(), "A.B.C.D"); // A.B.C.D == replace with ip address } jedis = pool.getResource();
but not able to connect to the remote redis server