We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80d2f9d commit 121af74Copy full SHA for 121af74
src/main/java/redis/clients/jedis/BinaryJedis.java
@@ -2926,12 +2926,12 @@ public Long getbit(byte[] key, long offset) {
2926
return client.getIntegerReply();
2927
}
2928
2929
- private long setrange(byte[] key, long offset, byte[] value) {
+ public long setrange(byte[] key, long offset, byte[] value) {
2930
client.setrange(key, offset, value);
2931
2932
2933
2934
- private String getrange(byte[] key, long startOffset, long endOffset) {
+ public String getrange(byte[] key, long startOffset, long endOffset) {
2935
client.getrange(key, startOffset, endOffset);
2936
return client.getBulkReply();
2937
0 commit comments