add disambiguating method on StringRedisConnection
This commit is contained in:
@@ -1154,6 +1154,10 @@ public class DefaultStringRedisConnection implements StringRedisConnection {
|
||||
}
|
||||
|
||||
|
||||
public Object execute(String command) {
|
||||
return execute(command, (byte[][]) null);
|
||||
}
|
||||
|
||||
public Object execute(String command, byte[]... args) {
|
||||
return delegate.execute(command, args);
|
||||
}
|
||||
|
||||
@@ -44,6 +44,8 @@ public interface StringRedisConnection extends RedisConnection {
|
||||
|
||||
Object execute(String command, String... args);
|
||||
|
||||
Object execute(String command);
|
||||
|
||||
Boolean exists(String key);
|
||||
|
||||
Long del(String... keys);
|
||||
|
||||
Reference in New Issue
Block a user