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

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

There is a newer version: 15.1.4.Final
Show 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 org.infinispan.server.resp.serialization.Resp3Response;

import io.netty.channel.ChannelHandlerContext;

/**
 * `HLEN key` command.
 * 

* Retrieve the size of the hash map stored under the given key. *

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy