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

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

The 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();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy