Spring Data Key-Value

org.springframework.data.keyvalue.redis.connection
Interface RedisServerCommands

All Known Subinterfaces:
RedisCommands, RedisConnection, StringRedisConnection
All Known Implementing Classes:
DefaultStringRedisConnection, JedisConnection, JredisConnection, RjcConnection

public interface RedisServerCommands

Server-specific commands supported by Redis.

Author:
Costin Leau

Method Summary
 void bgSave()
           
 void bgWriteAof()
           
 Long dbSize()
           
 void flushAll()
           
 void flushDb()
           
 List<String> getConfig(String pattern)
           
 Properties info()
           
 Long lastSave()
           
 void resetConfigStats()
           
 void save()
           
 void setConfig(String param, String value)
           
 void shutdown()
           
 

Method Detail

bgWriteAof

void bgWriteAof()

bgSave

void bgSave()

lastSave

Long lastSave()

save

void save()

dbSize

Long dbSize()

flushDb

void flushDb()

flushAll

void flushAll()

info

Properties info()

shutdown

void shutdown()

getConfig

List<String> getConfig(String pattern)

setConfig

void setConfig(String param,
               String value)

resetConfigStats

void resetConfigStats()

Spring Data Key-Value

Copyright © 2010-2011 SpringSource. All Rights Reserved.