Commit ad94bc31 authored by Vitaly Arbuzov's avatar Vitaly Arbuzov
Browse files

Merge branch 'unstable' into dict-split-by-slot

parents a08686a5 e55568ed
{ {
"CONFIG": { "CONFIG": {
"summary": "Configure Sentinel", "summary": "Configures Redis Sentinel.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "sentinel", "group": "sentinel",
"since": "6.2.0", "since": "6.2.0",
......
{ {
"DEBUG": { "DEBUG": {
"summary": "List or update the current configurable parameters", "summary": "Lists or updates the current configurable parameters of Redis Sentinel.",
"complexity": "O(N) where N is the number of configurable parameters", "complexity": "O(N) where N is the number of configurable parameters",
"group": "sentinel", "group": "sentinel",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"FAILOVER": { "FAILOVER": {
"summary": "Force a failover", "summary": "Forces a Redis Sentinel failover.",
"group": "sentinel", "group": "sentinel",
"since": "2.8.4", "since": "2.8.4",
"arity": 3, "arity": 3,
......
{ {
"FLUSHCONFIG": { "FLUSHCONFIG": {
"summary": "Rewrite configuration file", "summary": "Rewrites the Redis Sentinel configuration file.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "sentinel", "group": "sentinel",
"since": "2.8.4", "since": "2.8.4",
......
{ {
"GET-MASTER-ADDR-BY-NAME": { "GET-MASTER-ADDR-BY-NAME": {
"summary": "Get port and address of a master", "summary": "Returns the port and address of a master Redis instance.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "sentinel", "group": "sentinel",
"since": "2.8.4", "since": "2.8.4",
......
{ {
"HELP": { "HELP": {
"summary": "Show helpful text about the different subcommands", "summary": "Returns helpful text about the different subcommands.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "sentinel", "group": "sentinel",
"since": "6.2.0", "since": "6.2.0",
......
{ {
"INFO-CACHE": { "INFO-CACHE": {
"summary": "Get cached INFO from the instances in the deployment", "summary": "Returns the cached `INFO` replies from the deployment's instances.",
"complexity": "O(N) where N is the number of instances", "complexity": "O(N) where N is the number of instances",
"group": "sentinel", "group": "sentinel",
"since": "3.2.0", "since": "3.2.0",
......
{ {
"IS-MASTER-DOWN-BY-ADDR": { "IS-MASTER-DOWN-BY-ADDR": {
"summary": "Check if a master is down", "summary": "Determines whether a master Redis instance is down.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "sentinel", "group": "sentinel",
"since": "2.8.4", "since": "2.8.4",
......
{ {
"MASTER": { "MASTER": {
"summary": "Shows the state of a master", "summary": "Returns the state of a master Redis instance.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "sentinel", "group": "sentinel",
"since": "2.8.4", "since": "2.8.4",
......
{ {
"MASTERS": { "MASTERS": {
"summary": "List the monitored masters", "summary": "Returns a list of monitored Redis masters.",
"complexity": "O(N) where N is the number of masters", "complexity": "O(N) where N is the number of masters",
"group": "sentinel", "group": "sentinel",
"since": "2.8.4", "since": "2.8.4",
......
{ {
"MONITOR": { "MONITOR": {
"summary": "Start monitoring", "summary": "Starts monitoring.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "sentinel", "group": "sentinel",
"since": "2.8.4", "since": "2.8.4",
......
{ {
"MYID": { "MYID": {
"summary": "Get the Sentinel instance ID", "summary": "Returns the Redis Sentinel instance ID.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "sentinel", "group": "sentinel",
"since": "6.2.0", "since": "6.2.0",
......
{ {
"PENDING-SCRIPTS": { "PENDING-SCRIPTS": {
"summary": "Get information about pending scripts", "summary": "Returns information about pending scripts for Redis Sentinel.",
"group": "sentinel", "group": "sentinel",
"since": "2.8.4", "since": "2.8.4",
"arity": 2, "arity": 2,
......
{ {
"REMOVE": { "REMOVE": {
"summary": "Stop monitoring", "summary": "Stops monitoring.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "sentinel", "group": "sentinel",
"since": "2.8.4", "since": "2.8.4",
......
{ {
"REPLICAS": { "REPLICAS": {
"summary": "List the monitored replicas", "summary": "Returns a list of the monitored Redis replicas.",
"complexity": "O(N) where N is the number of replicas", "complexity": "O(N) where N is the number of replicas",
"group": "sentinel", "group": "sentinel",
"since": "5.0.0", "since": "5.0.0",
......
{ {
"RESET": { "RESET": {
"summary": "Reset masters by name pattern", "summary": "Resets Redis masters by name matching a pattern.",
"complexity": "O(N) where N is the number of monitored masters", "complexity": "O(N) where N is the number of monitored masters",
"group": "sentinel", "group": "sentinel",
"since": "2.8.4", "since": "2.8.4",
......
{ {
"SENTINELS": { "SENTINELS": {
"summary": "List the Sentinel instances", "summary": "Returns a list of Sentinel instances.",
"complexity": "O(N) where N is the number of Sentinels", "complexity": "O(N) where N is the number of Sentinels",
"group": "sentinel", "group": "sentinel",
"since": "2.8.4", "since": "2.8.4",
......
{ {
"SET": { "SET": {
"summary": "Change the configuration of a monitored master", "summary": "Changes the configuration of a monitored Redis master.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "sentinel", "group": "sentinel",
"since": "2.8.4", "since": "2.8.4",
......
{ {
"SIMULATE-FAILURE": { "SIMULATE-FAILURE": {
"summary": "Simulate failover scenarios", "summary": "Simulates failover scenarios.",
"group": "sentinel", "group": "sentinel",
"since": "3.2.0", "since": "3.2.0",
"arity": -3, "arity": -3,
......
{ {
"SLAVES": { "SLAVES": {
"summary": "List the monitored slaves", "summary": "Returns a list of the monitored replicas.",
"complexity": "O(N) where N is the number of slaves", "complexity": "O(N) where N is the number of replicas.",
"group": "sentinel", "group": "sentinel",
"since": "2.8.0", "since": "2.8.0",
"arity": 3, "arity": 3,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment