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

org.infinispan.server.resp.commands.string.SET Maven / Gradle / Ivy

There is a newer version: 15.1.4.Final
Show newest version
package org.infinispan.server.resp.commands.string;

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

import org.infinispan.commons.time.TimeService;
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.operation.SetOperation;
import org.infinispan.server.resp.response.SetResponse;
import org.infinispan.server.resp.serialization.Resp3Response;

import io.netty.channel.ChannelHandlerContext;

/**
 * @see Redis documentation
 * @since 14.0
 */
public class SET extends RespCommand implements Resp3Command {
   public SET() {
      this(-3, 1, 1, 1);
   }

   protected SET(int arity, int firstKeyPos, int lastKeyPos, int steps) {
      super(arity, firstKeyPos, lastKeyPos, steps);
   }

   @Override
   public CompletionStage perform(Resp3Handler handler,
                                                      ChannelHandlerContext ctx,
                                                      List arguments) {
      if (arguments.size() != 2) {
         TimeService ts = handler.respServer().getTimeService();
         return handler
               .stageToReturn(SetOperation.performOperation(handler.cache(), arguments, ts, getName()), ctx, SetResponse.SERIALIZER);
      }
      return handler.stageToReturn(
            handler.ignorePreviousValuesCache().putAsync(arguments.get(0), arguments.get(1)),
            ctx, Resp3Response.OK);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy