redis.clients.jedis.commands.AdvancedBinaryJedisCommands 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.
The newest version!
package redis.clients.jedis.commands;
import java.util.List;
import redis.clients.jedis.params.MigrateParams;
import redis.clients.jedis.params.ClientKillParams;
public interface AdvancedBinaryJedisCommands {
List configGet(byte[] pattern);
byte[] configSet(byte[] parameter, byte[] value);
String slowlogReset();
Long slowlogLen();
List slowlogGetBinary();
List slowlogGetBinary(long entries);
Long objectRefcount(byte[] key);
byte[] objectEncoding(byte[] key);
Long objectIdletime(byte[] key);
String migrate(String host, int port, byte[] key, int destinationDB, int timeout);
String migrate(String host, int port, int destinationDB, int timeout, MigrateParams params, byte[]... keys);
String clientKill(byte[] ipPort);
String clientKill(String ip, int port);
Long clientKill(ClientKillParams params);
byte[] clientGetnameBinary();
byte[] clientListBinary();
String clientSetname(byte[] name);
}