![JAR search and dependency download from the Maven repository](/logo.png)
org.infinispan.server.resp.commands.string.STRALGO 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.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;
/**
* @link https://redis.io/commands/lcs/
* @since 15.0
*/
public class STRALGO extends RespCommand implements Resp3Command {
public STRALGO() {
super(-5, 1, 2, 1);
}
@Override
public CompletionStage perform(Resp3Handler handler,
ChannelHandlerContext ctx,
List arguments) {
return handler.stageToReturn(LCSOperation.performOperation(handler.cache(), arguments, false), ctx, LCSResponse.SERIALIZER);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy