redis.clients.jedis.commands.ScriptingKeyBinaryCommands Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jedis Show documentation
Show all versions of jedis Show documentation
Jedis is a blazingly small and sane Redis java client.
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