public interface IRedisKeys
| Modifier and Type | Method and Description |
|---|---|
Long |
del(String... keys) |
String |
dump(String key) |
Boolean |
exists(String key) |
Boolean |
expire(String key,
int seconds) |
Boolean |
expireat(String key,
long timestamp) |
String[] |
keys(String pattern) |
String |
migrate(String host,
int port,
String key,
String destination_db,
int timeout,
String... options) |
Long |
move(String key,
int db) |
Object |
object(String subcommand,
String... arguments) |
Boolean |
persist(String key) |
Boolean |
pexpire(String key,
long milliseconds) |
Boolean |
pexpireat(String key,
long timestamp) |
Long |
pttl(String key) |
String |
randomkey() |
String |
rename(String key,
String newkey) |
Boolean |
renamenx(String key,
String newkey) |
String |
restore(String key,
int ttl,
String serialized_value) |
String[] |
scan(int cursor) |
String[] |
sort(String key,
String... options) |
Long |
ttl(String key) |
String |
type(String key) |
Long del(String... keys) throws NotImplementedException
NotImplementedExceptionString dump(String key) throws NotImplementedException
NotImplementedExceptionBoolean exists(String key) throws NotImplementedException
NotImplementedExceptionBoolean expire(String key, int seconds) throws NotImplementedException
NotImplementedExceptionBoolean expireat(String key, long timestamp) throws NotImplementedException
NotImplementedExceptionString[] keys(String pattern) throws NotImplementedException
NotImplementedExceptionString migrate(String host, int port, String key, String destination_db, int timeout, String... options) throws NotImplementedException
NotImplementedExceptionLong move(String key, int db) throws NotImplementedException
NotImplementedExceptionObject object(String subcommand, String... arguments) throws NotImplementedException
NotImplementedExceptionBoolean persist(String key) throws NotImplementedException
NotImplementedExceptionBoolean pexpire(String key, long milliseconds) throws NotImplementedException
NotImplementedExceptionBoolean pexpireat(String key, long timestamp) throws NotImplementedException
NotImplementedExceptionLong pttl(String key) throws NotImplementedException
NotImplementedExceptionString randomkey() throws NotImplementedException
NotImplementedExceptionString rename(String key, String newkey) throws NotImplementedException
NotImplementedExceptionBoolean renamenx(String key, String newkey) throws NotImplementedException
NotImplementedExceptionString restore(String key, int ttl, String serialized_value) throws NotImplementedException
NotImplementedExceptionString[] sort(String key, String... options) throws NotImplementedException
NotImplementedExceptionLong ttl(String key) throws NotImplementedException
NotImplementedExceptionString type(String key) throws NotImplementedException
NotImplementedExceptionString[] scan(int cursor) throws NotImplementedException
NotImplementedExceptionCopyright © 2015. All rights reserved.