Class DELEX

java.lang.Object
org.infinispan.server.resp.RespCommand
org.infinispan.server.resp.commands.string.DELEX
All Implemented Interfaces:
BaseResp3Command, Resp3Command

public class DELEX extends RespCommand implements Resp3Command
DELEX key [IFEQ value | IFNE value | IFDEQ digest | IFDNE digest]

Conditionally removes the specified key based on value or hash digest comparison.

  • IFEQ - Remove the key only if its value equals the specified value
  • IFNE - Remove the key only if its value does NOT equal the specified value
  • IFDEQ - Remove the key only if its hash digest equals the specified digest
  • IFDNE - Remove the key only if its hash digest does NOT equal the specified digest
Since:
16.2
See Also: