25 lines
459 B
Java
25 lines
459 B
Java
package redis.clients.jedis;
|
|
|
|
import java.util.List;
|
|
|
|
public interface AdvancedBinaryJedisCommands {
|
|
|
|
List<byte[]> configGet(byte[] pattern);
|
|
|
|
byte[] configSet(byte[] parameter, byte[] value);
|
|
|
|
String slowlogReset();
|
|
|
|
Long slowlogLen();
|
|
|
|
List<byte[]> slowlogGetBinary();
|
|
|
|
List<byte[]> slowlogGetBinary(long entries);
|
|
|
|
Long objectRefcount(byte[] key);
|
|
|
|
byte[] objectEncoding(byte[] key);
|
|
|
|
Long objectIdletime(byte[] key);
|
|
}
|