redis.clients.jedis.JedisClusterScriptingCommands 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
A java client for github.com/antirez/redis, a fork of github.com/xetorthio/jedis
package redis.clients.jedis;
import java.util.List;
public interface JedisClusterScriptingCommands {
Object eval(String script, int keyCount, String... params);
Object eval(String script, List keys, List args);
Object eval(String script, String key);
Object evalsha(String sha1, String key);
Object evalsha(String sha1, List keys, List args);
Object evalsha(String sha1, int keyCount, String... params);
Boolean scriptExists(String sha1, String key);
List scriptExists(String key, String... sha1);
String scriptLoad(String script, String key);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy