Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public Boolean exists(byte[] key) {

@Override
public Long exists(byte[]... keys) {
return actionWrapper.doInScope(RedisCommand.EXISTS, keys, connection::exists);
return actionWrapper.doInScope(RedisCommand.EXISTS, keys, () -> connection.exists(keys));
}

@Override
Expand All @@ -212,7 +212,7 @@ public Long del(byte[]... keys) {

@Override
public Long unlink(byte[]... keys) {
return actionWrapper.doInScope(RedisCommand.UNLINK, keys, connection::unlink);
return actionWrapper.doInScope(RedisCommand.UNLINK, keys, () -> connection.unlink(keys));
}

@Override
Expand All @@ -222,7 +222,7 @@ public DataType type(byte[] key) {

@Override
public Long touch(byte[]... keys) {
return actionWrapper.doInScope(RedisCommand.TOUCH, keys, connection::touch);
return actionWrapper.doInScope(RedisCommand.TOUCH, keys, () -> connection.touch(keys));
}

@Override
Expand Down
Loading