-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
32 changed files
with
2,631 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
package io.lettuce.core; | ||
|
||
/** | ||
* Enum object describing Redis ACL categories. | ||
* | ||
* @since 6.1 | ||
* @author Mikhael Sokolov | ||
*/ | ||
public enum AclCategory { | ||
|
||
/** | ||
* command affects keyspace | ||
*/ | ||
KEYSPACE, | ||
|
||
/** | ||
* read command | ||
*/ | ||
READ, | ||
|
||
/** | ||
* write command | ||
*/ | ||
WRITE, | ||
|
||
/** | ||
* command for sets | ||
*/ | ||
SET, | ||
|
||
/** | ||
* command for sorted sets | ||
*/ | ||
SORTEDSET, | ||
|
||
/** | ||
* command for lists | ||
*/ | ||
LIST, | ||
|
||
/** | ||
* command for hash ops | ||
*/ | ||
HASH, | ||
|
||
/** | ||
* command for strings | ||
*/ | ||
STRING, | ||
|
||
/** | ||
* command for bitmaps | ||
*/ | ||
BITMAP, | ||
|
||
/** | ||
* command for hyperloglog | ||
*/ | ||
HYPERLOGLOG, | ||
|
||
/** | ||
* geo command | ||
*/ | ||
GEO, | ||
|
||
/** | ||
* streaming command | ||
*/ | ||
STREAM, | ||
|
||
/** | ||
* pubsub command | ||
*/ | ||
PUBSUB, | ||
|
||
/** | ||
* admin command | ||
*/ | ||
ADMIN, | ||
|
||
/** | ||
* fast command | ||
*/ | ||
FAST, | ||
|
||
/** | ||
* slow command | ||
*/ | ||
SLOW, | ||
|
||
/** | ||
* blocking command | ||
*/ | ||
BLOCKING, | ||
|
||
/** | ||
* dangerous command | ||
*/ | ||
DANGEROUS, | ||
|
||
/** | ||
* connection-establishing command | ||
*/ | ||
CONNECTION, | ||
|
||
/** | ||
* transactional command | ||
*/ | ||
TRANSACTION, | ||
|
||
/** | ||
* scripting command | ||
*/ | ||
SCRIPTING | ||
} |
Oops, something went wrong.