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

redis.clients.jedis.JedisClusterBinaryScriptingCommands Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package redis.clients.jedis;

import java.util.List;

public interface JedisClusterBinaryScriptingCommands {
  Object eval(byte[] script, byte[] keyCount, byte[]... params);

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

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

  Object eval(byte[] script, byte[] key);

  Object evalsha(byte[] script, byte[] key);

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

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

  List scriptExists(byte[] key, byte[][] sha1);

  byte[] scriptLoad(byte[] script, byte[] key);

  String scriptFlush(byte[] key);

  String scriptKill(byte[] key);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy