![JAR search and dependency download from the Maven repository](/logo.png)
org.infinispan.server.resp.commands.string.MSETNX 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.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionStage;
import java.util.stream.Collectors;
import org.infinispan.commons.marshall.WrappedByteArray;
import org.infinispan.server.resp.Resp3Handler;
import org.infinispan.server.resp.RespCommand;
import org.infinispan.server.resp.RespErrorUtil;
import org.infinispan.server.resp.RespRequestHandler;
import org.infinispan.server.resp.commands.Resp3Command;
import org.infinispan.server.resp.logging.Log;
import org.infinispan.server.resp.serialization.Resp3Response;
import io.netty.channel.ChannelHandlerContext;
/**
* @link https://redis.io/commands/msetnx/
* Derogating to the above description, this implementation is not atomic:
* msetnx first checks the nonexistence of all the keys
* and then performs the set. A concurrent set of any of the keys by
* another client
* will be overwritten.
* @since 15.0
*/
public class MSETNX extends RespCommand implements Resp3Command {
public MSETNX() {
super(-3, 1, -1, 2);
}
@Override
public CompletionStage perform(Resp3Handler handler,
ChannelHandlerContext ctx,
List arguments) {
if (arguments.size() < 2 || arguments.size() % 2 != 0) {
RespErrorUtil.wrongArgumentNumber(this, handler.allocator());
return handler.myStage();
}
Log.SERVER.msetnxConsistencyMessage();
// Using WBA so equals() ensures same key has only one entry with the last value in the map
var entriesWBA = new HashMap();
for (int i = 0; i < arguments.size(); i++) {
entriesWBA.put(new WrappedByteArray(arguments.get(i)), arguments.get(++i));
}
// Change to loop?
Map entries = entriesWBA.entrySet().stream().collect(Collectors.toMap(e -> e.getKey().getBytes(), Map.Entry::getValue));
var existingEntries = handler.cache().getAll(entriesWBA.keySet());
if (existingEntries.isEmpty()) {
return handler.stageToReturn(handler.cache().putAllAsync(entries).thenApply(v -> 1L), ctx,
Resp3Response.INTEGER);
}
return handler
.stageToReturn(CompletableFuture.completedFuture(0L), ctx, Resp3Response.INTEGER);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy