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

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

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

import static org.infinispan.server.resp.operation.RespExpiration.EX_BYTES;

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

import org.infinispan.server.resp.Resp3Handler;
import org.infinispan.server.resp.RespRequestHandler;

import io.netty.channel.ChannelHandlerContext;

/**
 * `SETEX key seconds value` command.
 * 

* As of Redis 2.6.2, this command is deprecated. Applications should utilize `SET key value EX seconds`. *

* * @since 15.0 * @author José Bolina * @see Redis documentation. */ public class SETEX extends SET { public SETEX() { super(4, 1, 1, 1); } @Override public CompletionStage perform(Resp3Handler handler, ChannelHandlerContext ctx, List arguments) { byte[] key = arguments.get(0); byte[] seconds = arguments.get(1); byte[] value = arguments.get(2); return super.perform(handler, ctx, List.of(key, value, EX_BYTES, seconds)); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy