redis.clients.jedis.commands.SampleBinaryKeyedCommands 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;
import redis.clients.jedis.args.FlushMode;
import redis.clients.jedis.util.KeyValue;
public interface SampleBinaryKeyedCommands {
long waitReplicas(byte[] sampleKey, int replicas, long timeout);
KeyValue waitAOF(byte[] sampleKey, long numLocal, long numReplicas, long timeout);
Object eval(byte[] script, byte[] sampleKey);
Object evalsha(byte[] sha1, byte[] sampleKey);
Boolean scriptExists(byte[] sha1, byte[] sampleKey);
List scriptExists(byte[] sampleKey, byte[]... sha1s);
byte[] scriptLoad(byte[] script, byte[] sampleKey);
String scriptFlush(byte[] sampleKey);
String scriptFlush(byte[] sampleKey, FlushMode flushMode);
String scriptKill(byte[] sampleKey);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy