Package com.blackrook.redis.commands
Interface RedisDebugCommands
-
- All Known Implementing Classes:
RedisDebugConnection
public interface RedisDebugCommands
Specifies the Redis commands for issuing debug conmmands.- Author:
- Matthew Tropiano
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
debugObject(String key)
void
debugSegfault()
-
-
-
Method Detail
-
debugObject
String debugObject(String key)
From http://redis.io/commands/debug-object:
Available since 1.0.0.
DEBUG OBJECT
is a debugging command that should not be used by clients. Check theRedisServerCommands.object(String, String)
command instead.- Parameters:
key
- the value key.- Returns:
- the debug output.
-
debugSegfault
void debugSegfault()
From http://redis.io/commands/debug-segfault:
Available since 1.0.0.
DEBUG SEGFAULT
performs an invalid memory access that crashes Redis. It is used to simulate bugs during the development.
-
-