All Downloads are FREE. Search and download functionalities are using the official Maven repository.

redis.clients.jedis.BasicCommands Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package redis.clients.jedis;

public interface BasicCommands {

  String ping();

  String quit();

  String flushDB();

  Long dbSize();

  String select(int index);

  String flushAll();

  String auth(String password);

  String save();

  String bgsave();

  String bgrewriteaof();

  Long lastsave();

  String shutdown();

  String info();

  String info(String section);

  String slaveof(String host, int port);

  String slaveofNoOne();

  Long getDB();

  String debug(DebugParams params);

  String configResetStat();

  Long waitReplicas(int replicas, long timeout);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy