package redis.clients.jedis; import java.util.List; 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); }