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

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

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

import java.util.List;

public interface ScriptingKeyBinaryCommands {

  Object eval(byte[] script);

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

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

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

  Object evalsha(byte[] sha1);

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy