refactoring

pull/6019/head
Nikita Koksharov 7 months ago
parent 670c7dbdc0
commit 75ca7b2148

@ -849,6 +849,7 @@ public interface RedisCommands {
RedisStrictCommand<Boolean> JSON_DEL_BOOLEAN = new RedisStrictCommand<>("JSON.DEL", new BooleanReplayConvertor()); RedisStrictCommand<Boolean> JSON_DEL_BOOLEAN = new RedisStrictCommand<>("JSON.DEL", new BooleanReplayConvertor());
RedisStrictCommand<Void> JSON_MSET = new RedisStrictCommand<>("JSON.MSET", new VoidReplayConvertor());
RedisStrictCommand<Void> JSON_SET = new RedisStrictCommand<>("JSON.SET", new VoidReplayConvertor()); RedisStrictCommand<Void> JSON_SET = new RedisStrictCommand<>("JSON.SET", new VoidReplayConvertor());
RedisStrictCommand<Void> JSON_MERGE = new RedisStrictCommand<>("JSON.MERGE", new VoidReplayConvertor()); RedisStrictCommand<Void> JSON_MERGE = new RedisStrictCommand<>("JSON.MERGE", new VoidReplayConvertor());
RedisStrictCommand<Boolean> JSON_SET_BOOLEAN = new RedisStrictCommand<>("JSON.SET", new BooleanNotNullReplayConvertor()); RedisStrictCommand<Boolean> JSON_SET_BOOLEAN = new RedisStrictCommand<>("JSON.SET", new BooleanNotNullReplayConvertor());

@ -19,7 +19,7 @@ import org.redisson.client.protocol.Decoder;
import org.redisson.client.protocol.Encoder; import org.redisson.client.protocol.Encoder;
/** /**
* Json codec interface. * Json codec interface for RJsonBucket object.
* *
* @author Nikita Koksharov * @author Nikita Koksharov
* *

Loading…
Cancel
Save