All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.server.resp.commands.hash.HDEL Maven / Gradle / Ivy

The newest version!
package org.infinispan.server.resp.commands.hash;

import java.util.List;
import java.util.concurrent.CompletionStage;

import org.infinispan.multimap.impl.EmbeddedMultimapPairCache;
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 io.netty.channel.ChannelHandlerContext;

/**
 * `HDEL key field [field ...]` command.
 * 

* Remove the given fields from the hash stored at key. Unknown fields are just ignored, and a non-existing key * returns 0. *

* * @since 15.0 * @see Redis Documentation * @author José Bolina */ public class HDEL extends RespCommand implements Resp3Command { public HDEL() { super(-3, 1, 1, 1); } @Override public CompletionStage perform(Resp3Handler handler, ChannelHandlerContext ctx, List arguments) { EmbeddedMultimapPairCache multimap = handler.getHashMapMultimap(); return handler.stageToReturn(multimap.remove(arguments.get(0), arguments.subList(1, arguments.size())), ctx, HSET.CONSUMER); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy