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

org.infinispan.server.resp.commands.string.LCS 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.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.LCSOperation;
import org.infinispan.server.resp.response.LCSResponse;

import io.netty.channel.ChannelHandlerContext;

/**
 * `LCS key1 key2 [LEN] [IDX] [MINMATCHLEN min-match-len] [WITHMATCHLEN]` command.
 *
 * @since 15.1
 * @see Redis Documentation
 * @see STRALGO
 */
public class LCS extends RespCommand implements Resp3Command {

   public LCS() {
      super(-3, 1, 2, 1);
   }

   @Override
   public CompletionStage perform(Resp3Handler handler, ChannelHandlerContext ctx, List arguments) {
      return handler.stageToReturn(LCSOperation.performOperation(handler.cache(), arguments, true), ctx, LCSResponse.SERIALIZER);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy