redis.clients.jedis
Interface BasicRedisPipeline

All Known Implementing Classes:
Pipeline, PipelineBlock, Transaction, TransactionBlock

public interface BasicRedisPipeline

Pipelined responses for all of the low level, non key related commands


Method Summary
 Response<String> bgrewriteaof()
           
 Response<String> bgsave()
           
 Response<String> configGet(String pattern)
           
 Response<String> configResetStat()
           
 Response<String> configSet(String parameter, String value)
           
 Response<Long> dbSize()
           
 Response<String> flushAll()
           
 Response<String> flushDB()
           
 Response<String> info()
           
 Response<Long> lastsave()
           
 Response<String> ping()
           
 Response<String> save()
           
 Response<String> select(int index)
           
 Response<String> shutdown()
           
 Response<List<String>> time()
           
 

Method Detail

bgrewriteaof

Response<String> bgrewriteaof()

bgsave

Response<String> bgsave()

configGet

Response<String> configGet(String pattern)

configSet

Response<String> configSet(String parameter,
                           String value)

configResetStat

Response<String> configResetStat()

save

Response<String> save()

lastsave

Response<Long> lastsave()

flushDB

Response<String> flushDB()

flushAll

Response<String> flushAll()

info

Response<String> info()

time

Response<List<String>> time()

dbSize

Response<Long> dbSize()

shutdown

Response<String> shutdown()

ping

Response<String> ping()

select

Response<String> select(int index)


Copyright © 2014. All rights reserved.