redis.clients.jedis
Interface BasicCommands

All Known Implementing Classes:
BinaryJedis, Jedis, JedisCluster

public interface BasicCommands


Method Summary
 String auth(String password)
           
 String bgrewriteaof()
           
 String bgsave()
           
 String configResetStat()
           
 Long dbSize()
           
 String debug(DebugParams params)
           
 String flushAll()
           
 String flushDB()
           
 Long getDB()
           
 String info()
           
 String info(String section)
           
 Long lastsave()
           
 String ping()
           
 String quit()
           
 String save()
           
 String select(int index)
           
 String shutdown()
           
 String slaveof(String host, int port)
           
 String slaveofNoOne()
           
 Long waitReplicas(int replicas, long timeout)
           
 

Method Detail

ping

String ping()

quit

String quit()

flushDB

String flushDB()

dbSize

Long dbSize()

select

String select(int index)

flushAll

String flushAll()

auth

String auth(String password)

save

String save()

bgsave

String bgsave()

bgrewriteaof

String bgrewriteaof()

lastsave

Long lastsave()

shutdown

String shutdown()

info

String info()

info

String info(String section)

slaveof

String slaveof(String host,
               int port)

slaveofNoOne

String slaveofNoOne()

getDB

Long getDB()

debug

String debug(DebugParams params)

configResetStat

String configResetStat()

waitReplicas

Long waitReplicas(int replicas,
                  long timeout)


Copyright © 2014. All rights reserved.