summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/acl-list.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2020-03-21 10:28:17 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-02-07 11:16:53 +0000
commit06cba6ccd165ca8b224797e37fccb9e63f026d77 (patch)
treee82f1bc439997ae296f2e74f8a64d84c5d95f140 /iredis/data/commands/acl-list.md
parentInitial commit. (diff)
downloadiredis-06cba6ccd165ca8b224797e37fccb9e63f026d77.tar.xz
iredis-06cba6ccd165ca8b224797e37fccb9e63f026d77.zip
Adding upstream version 1.9.1.upstream/1.9.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'iredis/data/commands/acl-list.md')
-rw-r--r--iredis/data/commands/acl-list.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/iredis/data/commands/acl-list.md b/iredis/data/commands/acl-list.md
new file mode 100644
index 0000000..ebfa36b
--- /dev/null
+++ b/iredis/data/commands/acl-list.md
@@ -0,0 +1,17 @@
+The command shows the currently active ACL rules in the Redis server. Each line
+in the returned array defines a different user, and the format is the same used
+in the redis.conf file or the external ACL file, so you can cut and paste what
+is returned by the ACL LIST command directly inside a configuration file if you
+wish (but make sure to check `ACL SAVE`).
+
+@return
+
+An array of strings.
+
+@examples
+
+```
+> ACL LIST
+1) "user antirez on #9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08 ~objects:* +@all -@admin -@dangerous"
+2) "user default on nopass ~* +@all"
+```