use of redis.clients.jedis.BinaryJedis in project jedis by xetorthio.
the class JedisTest method checkCloseable.
@Test
public void checkCloseable() {
jedis.close();
BinaryJedis bj = new BinaryJedis("localhost");
bj.connect();
bj.close();
}
Aggregations