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

redis.clients.jedis.commands.SlowlogCommands Maven / Gradle / Ivy

The newest version!
package redis.clients.jedis.commands;

import java.util.List;
import redis.clients.jedis.resps.Slowlog;

public interface SlowlogCommands {

  String slowlogReset();

  long slowlogLen();

  List slowlogGet();

  List slowlogGetBinary();

  List slowlogGet(long entries);

  List slowlogGetBinary(long entries);

}