Answers for "jedis.flush DB"

0

jedis.flush DB

public String flushDB() {
  Jedis jedis = getJedis();
  try {
    return jedis.flushDB();
  }
  finally {close(jedis);}
}
Posted by: Guest on May-05-2020

Browse Popular Code Answers by Language