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

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

There is a newer version: 3.1.1
Show newest version
package redis.clients.jedis;

public class DebugParams {
    private String[] command;

    public String[] getCommand() {
	return command;
    }

    private DebugParams() {

    }

    public static DebugParams SEGFAULT() {
	DebugParams debugParams = new DebugParams();
	debugParams.command = new String[] { "SEGFAULT" };
	return debugParams;
    }

    public static DebugParams OBJECT(String key) {
	DebugParams debugParams = new DebugParams();
	debugParams.command = new String[] { "OBJECT", key };
	return debugParams;
    }

    public static DebugParams RELOAD() {
	DebugParams debugParams = new DebugParams();
	debugParams.command = new String[] { "RELOAD" };
	return debugParams;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy