org.infinispan.server.resp.commands.set.SINTERSTORE 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
The newest version!
package org.infinispan.server.resp.commands.set;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.concurrent.CompletionStage;
import org.infinispan.commons.marshall.WrappedByteArray;
import org.infinispan.multimap.impl.EmbeddedSetCache;
import org.infinispan.server.resp.Consumers;
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;
/**
* {@link} https://redis.io/commands/sinterstore/
*
* This command is equal to SINTER, but instead of returning the resulting set,
* it is stored in destination. If destination already exists, it is
* overwritten.
*
* @since 15.0
*/
public class SINTERSTORE extends RespCommand implements Resp3Command {
static Set EMPTY_SET = new HashSet<>();
public SINTERSTORE() {
super(-3, 1, -1, 1);
}
@Override
public CompletionStage perform(Resp3Handler handler,
ChannelHandlerContext ctx,
List arguments) {
EmbeddedSetCache esc = handler.getEmbeddedSetCache();
var destination = arguments.get(0);
var keys = arguments.subList(1, arguments.size());
var uniqueKeys = SINTER.getUniqueKeys(handler, keys);
var allEntries= esc.getAll(uniqueKeys);
return handler.stageToReturn(
allEntries.thenCompose(sets -> handler.getEmbeddedSetCache().set(destination, SINTER.intersect(sets.values(), 0))),
ctx,
Consumers.LONG_BICONSUMER);
}
}