Skip to content

Commit

Permalink
Undo script commands changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gerzse committed Mar 25, 2024
1 parent f49b71e commit 1ee8901
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
10 changes: 0 additions & 10 deletions src/main/java/redis/clients/jedis/PipeliningBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -1606,21 +1606,11 @@ public Response<List<Boolean>> scriptExists(String sampleKey, String... sha1) {
return appendCommand(commandObjects.scriptExists(sampleKey, sha1));
}

@Override
public Response<String> scriptLoad(String script) {
return appendCommand(commandObjects.scriptLoad(script));
}

@Override
public Response<String> scriptLoad(String script, String sampleKey) {
return appendCommand(commandObjects.scriptLoad(script, sampleKey));
}

@Override
public Response<String> scriptFlush() {
return appendCommand(commandObjects.scriptFlush());
}

@Override
public Response<String> scriptFlush(String sampleKey) {
return appendCommand(commandObjects.scriptFlush(sampleKey));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,11 @@ public interface SampleKeyedPipelineCommands {

Response<List<Boolean>> scriptExists(String sampleKey, String... sha1);

Response<String> scriptLoad(String script);

Response<String> scriptLoad(String script, String sampleKey);

Response<String> scriptFlush();

Response<String> scriptFlush(String sampleKey);

Response<String> scriptFlush(String sampleKey, FlushMode flushMode);

Response<String> scriptKill();

Response<String> scriptKill(String sampleKey);
}

0 comments on commit 1ee8901

Please sign in to comment.