public interface IRedisSet
| Modifier and Type | Method and Description |
|---|---|
Long |
sadd(String key,
String member,
String... members) |
Long |
scard(String key) |
Set<String> |
sdiff(String key,
String... keys) |
Long |
sdiffstore(String destination,
String key,
String... keys) |
Set<String> |
sinter(String key,
String... keys) |
Long |
sinterstore(String destination,
String key,
String... keys) |
Boolean |
sismember(String key,
String member) |
Set<String> |
smembers(String key) |
Boolean |
smove(String source,
String dest,
String member) |
String |
spop(String key) |
String |
srandmember(String key) |
List<String> |
srandmember(String key,
long count) |
Long |
srem(String key,
String member,
String... members) |
ScanResult<Set<String>> |
sscan(String key,
long cursor,
String... options) |
Set<String> |
sunion(String key,
String... keys) |
Long |
sunionstore(String destination,
String key,
String... keys) |
Long sadd(String key, String member, String... members) throws WrongTypeException, NotImplementedException
Long scard(String key) throws WrongTypeException, NotImplementedException
Set<String> sdiff(String key, String... keys) throws WrongTypeException, NotImplementedException
Long sdiffstore(String destination, String key, String... keys) throws WrongTypeException, NotImplementedException
Set<String> sinter(String key, String... keys) throws WrongTypeException, NotImplementedException
Long sinterstore(String destination, String key, String... keys) throws WrongTypeException, NotImplementedException
Boolean sismember(String key, String member) throws WrongTypeException, NotImplementedException
Set<String> smembers(String key) throws WrongTypeException, NotImplementedException
Boolean smove(String source, String dest, String member) throws WrongTypeException, NotImplementedException
String spop(String key) throws WrongTypeException, NotImplementedException
String srandmember(String key) throws WrongTypeException, NotImplementedException
List<String> srandmember(String key, long count) throws WrongTypeException, NotImplementedException
Long srem(String key, String member, String... members) throws WrongTypeException, NotImplementedException
Set<String> sunion(String key, String... keys) throws WrongTypeException, NotImplementedException
Long sunionstore(String destination, String key, String... keys) throws WrongTypeException, NotImplementedException
ScanResult<Set<String>> sscan(String key, long cursor, String... options) throws WrongTypeException, NotImplementedException
Copyright © 2015. All rights reserved.