diff --git a/redisson/src/main/java/org/redisson/client/protocol/RedisCommands.java b/redisson/src/main/java/org/redisson/client/protocol/RedisCommands.java index 5768415d6..bab970263 100644 --- a/redisson/src/main/java/org/redisson/client/protocol/RedisCommands.java +++ b/redisson/src/main/java/org/redisson/client/protocol/RedisCommands.java @@ -207,6 +207,7 @@ public interface RedisCommands { RedisCommand> SDIFF = new RedisCommand>("SDIFF", new ObjectSetReplayDecoder()); RedisCommand> SINTER = new RedisCommand>("SINTER", new ObjectSetReplayDecoder()); + RedisStrictCommand LPOS = new RedisStrictCommand<>("LPOS"); RedisCommand LSET = new RedisCommand("LSET", new VoidReplayConvertor()); RedisCommand LPOP = new RedisCommand("LPOP"); RedisCommand LREM_SINGLE = new RedisCommand("LREM", new BooleanReplayConvertor());