From 9c85ea5d9e6204c92508b317e49e4acadc655492 Mon Sep 17 00:00:00 2001 From: Guy Korland Date: Sun, 1 Sep 2024 15:57:19 +0300 Subject: [PATCH] fix #68 add Graph.INFO --- commands/graph.info.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 commands/graph.info.md diff --git a/commands/graph.info.md b/commands/graph.info.md new file mode 100644 index 0000000..2ecfee1 --- /dev/null +++ b/commands/graph.info.md @@ -0,0 +1,26 @@ +--- +title: "GRAPH.INFO" +description: > + Returns information and statistics about the current executing commands +parent: "Commands" +--- + +# GRAPH.INFO [Section [Section ...]] + +Returns information and statistics about the current executing commands. + +```sh +127.0.0.1:6379> GRAPH.INFO +1) "# Running queries" +2) (empty array) +3) "# Waiting queries" +4) (empty array) + +127.0.0.1:6379> GRAPH.INFO RunningQueries +1) "# Running queries" +2) (empty array) + +127.0.0.1:6379> GRAPH.INFO WaitingQueries +1) "# Waiting queries" +2) (empty array) +```