adding support for bit manipulation in to pipeline

This commit is contained in:
ewhauser
2011-02-24 09:40:28 -05:00
committed by Jonathan Leibiusky
parent 430601f31e
commit b7eb51f75c
3 changed files with 46 additions and 6 deletions

View File

@@ -1,9 +1,9 @@
package redis.clients.jedis;
import java.util.Map;
import redis.clients.jedis.BinaryClient.LIST_POSITION;
import java.util.Map;
public abstract class PipelineBlock implements Commands {
private Client client;
@@ -55,6 +55,14 @@ public abstract class PipelineBlock implements Commands {
client.get(key);
}
public void getbit(String key, long offset) {
client.getbit(key, offset);
}
public void getrange(String key, long startOffset, long endOffset) {
client.getrange(key, startOffset, endOffset);
}
public void getSet(String key, String value) {
client.getSet(key, value);
}
@@ -224,6 +232,10 @@ public abstract class PipelineBlock implements Commands {
client.set(key, value);
}
public void setbit(String key, long offset, boolean value) {
client.setbit(key, offset, value);
}
public void setex(String key, int seconds, String value) {
client.setex(key, seconds, value);
}
@@ -232,6 +244,10 @@ public abstract class PipelineBlock implements Commands {
client.setnx(key, value);
}
public void setrange(String key, long offset, String value) {
client.setrange(key, offset, value);
}
public void sinter(String... keys) {
client.sinter(keys);
}