You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/operate/oss_and_stack/management/security/acl.md
+12-13Lines changed: 12 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -280,7 +280,7 @@ The following is a list of command categories and their meanings:
280
280
281
281
***admin** - Administrative commands. Normal applications will never need to use
282
282
these. Includes [`REPLICAOF`](/commands/replicaof), [`CONFIG`](/commands/config), [`DEBUG`](/commands/debug), [`SAVE`](/commands/save), [`MONITOR`](/commands/monitor), [`ACL`](/commands/acl), [`SHUTDOWN`](/commands/shutdown), etc.
283
-
***bitmap** - Data type: bitmaps related.
283
+
***bitmap** - Data type: all bitmap related commands.
284
284
***blocking** - Potentially blocking the connection until released by another
285
285
command.
286
286
***bloom** - Data type: all Bloom filter related commands.
@@ -292,31 +292,30 @@ The following is a list of command categories and their meanings:
292
292
various reasons). This includes [`FLUSHALL`](/commands/flushall), [`MIGRATE`](/commands/migrate), [`RESTORE`](/commands/restore), [`SORT`](/commands/sort), [`KEYS`](/commands/keys),
293
293
[`CLIENT`](/commands/client), [`DEBUG`](/commands/debug), [`INFO`](/commands/info), [`CONFIG`](/commands/config), [`SAVE`](/commands/save), [`REPLICAOF`](/commands/replicaof), etc.
294
294
***fast** - Fast O(1) commands. May loop on the number of arguments, but not the number of elements in the key.
295
-
***geo** - Data type: geospatial indexes related.
296
-
***hash** - Data type: hashes related.
297
-
***hyperloglog** - Data type: hyperloglog related.
295
+
***geo** - Data type: all geospatial index related commands.
296
+
***hash** - Data type: all hash related commands.
297
+
***hyperloglog** - Data type: all hyperloglog related commands.
298
298
***json** - Data type: all JSON related commands.
299
299
***keyspace** - Writing or reading from keys, databases, or their metadata
300
300
in a type agnostic way. Includes [`DEL`](/commands/del), [`RESTORE`](/commands/restore), [`DUMP`](/commands/dump), [`RENAME`](/commands/rename), [`EXISTS`](/commands/exists), [`DBSIZE`](/commands/dbsize),
301
301
[`KEYS`](/commands/keys), [`EXPIRE`](/commands/expire), [`TTL`](/commands/ttl), [`FLUSHALL`](/commands/flushall), etc. Commands that may modify the keyspace,
302
302
key, or metadata will also have the `write` category. Commands that only read
303
303
the keyspace, key, or metadata will have the `read` category.
304
-
***list** - Data type: lists related.
305
-
***pubsub** - PubSub-related commands.
306
-
***read** - Reading from keys (values or metadata). Note that commands that don't
307
-
interact with keys, will not have either `read` or `write`.
304
+
***list** - Data type: all list related commands.
305
+
***pubsub** - all pubsub related commands.
306
+
***read** - Reading from keys (values or metadata). Note that commands that don't interact with keys, will not have either `read` or `write`.
308
307
***scripting** - Scripting related.
309
308
***search** - All search related commands.
310
-
***set** - Data type: sets related.
311
-
***sortedset** - Data type: sorted sets related.
309
+
***set** - Data type: all set related commands.
310
+
***sortedset** - Data type: all sorted set related commands.
312
311
***slow** - All commands that are not `fast`.
313
-
***stream** - Data type: streams related.
314
-
***string** - Data type: strings related.
312
+
***stream** - Data type: all stream related commands.
313
+
***string** - Data type: all string related commands.
315
314
***tdigest** - Data type: all t-digest related commands.
316
315
***timeseries** - Data type: all time series related commands.
317
316
***topk** - Data type: all top-k related commands.
318
317
***transaction** - [`WATCH`](/commands/watch) / [`MULTI`](/commands/multi) / [`EXEC`](/commands/exec) related commands.
319
-
***write** - Writing to keys (values or metadata).
318
+
***write** - Writing to keys (values or metadata). Note that commands that don't interact with keys, will not have either `read` or `write`.
320
319
321
320
Redis can also show you a list of all categories and the exact commands each category includes using the Redis [`ACL CAT`](/commands/acl-cat) command. It can be used in two forms:
0 commit comments