Adding setbit/getbit to ShardedJedis

This commit is contained in:
Eric Hauser
2011-02-22 22:17:29 -05:00
committed by Jonathan Leibiusky
parent ffebfe120b
commit e12f655fa3
2 changed files with 14 additions and 0 deletions

View File

@@ -23,6 +23,10 @@ public interface JedisCommands {
Long ttl(String key);
boolean setbit(String key, long offset, boolean value);
boolean getbit(String key, long offset);
String getSet(String key, String value);
Long setnx(String key, String value);