All Downloads are FREE. Search and download functionalities are using the official Maven repository.

redis.clients.jedis.AdvancedBinaryJedisCommands Maven / Gradle / Ivy

There is a newer version: 1.13.0
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy