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

redis.clients.jedis.commands.ScriptingKeyPipelineBinaryCommands Maven / Gradle / Ivy

The newest version!
package redis.clients.jedis.commands;

import java.util.List;
import redis.clients.jedis.Response;

public interface ScriptingKeyPipelineBinaryCommands {

  Response eval(byte[] script);

  Response eval(byte[] script, int keyCount, byte[]... params);

  Response eval(byte[] script, List keys, List args);

  Response evalReadonly(byte[] script, List keys, List args);

  Response evalsha(byte[] sha1);

  Response evalsha(byte[] sha1, int keyCount, byte[]... params);

  Response evalsha(byte[] sha1, List keys, List args);

  Response evalshaReadonly(byte[] sha1, List keys, List args);
}