![JAR search and dependency download from the Maven repository](/logo.png)
org.infinispan.server.resp.commands.string.GETDEL Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-server-resp Show documentation
Show all versions of infinispan-server-resp Show documentation
Infinispan Resp Protocol Server
package org.infinispan.server.resp.commands.string;
import java.util.List;
import java.util.concurrent.CompletionStage;
import org.infinispan.server.resp.Resp3Handler;
import org.infinispan.server.resp.RespCommand;
import org.infinispan.server.resp.RespRequestHandler;
import org.infinispan.server.resp.commands.Resp3Command;
import org.infinispan.server.resp.serialization.Resp3Response;
import io.netty.channel.ChannelHandlerContext;
/**
* GETDEL Resp Command
*
* Get the value of key and delete the key. This command is similar to GET,
* except for the fact that it also deletes the key on success (if and only
* if the key's value type is a string).
* @link https://redis.io/commands/getdel/
* @since 15.0
*/
public class GETDEL extends RespCommand implements Resp3Command {
public GETDEL() {
super(2, 1, 1, 1);
}
@Override
public CompletionStage perform(Resp3Handler handler,
ChannelHandlerContext ctx,
List arguments) {
byte[] keyBytes = arguments.get(0);
return handler.stageToReturn(handler.cache().removeAsync(keyBytes), ctx, Resp3Response.BULK_STRING_BYTES);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy