Interface RedisDebugCommands
- All Known Implementing Classes:
RedisDebugConnection
public interface RedisDebugCommands
Specifies the Redis commands for issuing debug conmmands.
- Author:
- Matthew Tropiano
-
Method Summary
-
Method Details
-
debugObject
From http://redis.io/commands/debug-object:
Available since 1.0.0.
DEBUG OBJECTis 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 SEGFAULTperforms an invalid memory access that crashes Redis. It is used to simulate bugs during the development.
-