mirror of
https://github.com/fluencelabs/redis
synced 2025-03-19 09:00:51 +00:00
ACL: avoid a radix tree lookup for the default user.
This commit is contained in:
parent
7f8314760a
commit
aced0328e3
@ -119,7 +119,7 @@ client *createClient(int fd) {
|
||||
c->argc = 0;
|
||||
c->argv = NULL;
|
||||
c->cmd = c->lastcmd = NULL;
|
||||
c->user = ACLGetUserByName("default",7);
|
||||
c->user = DefaultUser;
|
||||
c->multibulklen = 0;
|
||||
c->bulklen = -1;
|
||||
c->sentlen = 0;
|
||||
|
@ -1685,6 +1685,7 @@ void sendChildInfo(int process_type);
|
||||
void receiveChildInfo(void);
|
||||
|
||||
/* acl.c -- Authentication related prototypes. */
|
||||
extern user *DefaultUser;
|
||||
void ACLInit(void);
|
||||
int ACLCheckUserCredentials(robj *username, robj *password);
|
||||
unsigned long ACLGetCommandID(const char *cmdname);
|
||||
|
Loading…
x
Reference in New Issue
Block a user