Home
last modified time | relevance | path

Searched defs:redisCommand (Results 1 – 2 of 2) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dserver.h1299 struct redisCommand { struct
1301 redisCommandProc *proc; argument
1302 int arity;
1303 char *sflags; /* Flags as string representation, one char per flag. */
1304 int flags; /* The actual flags, obtained from the 'sflags' field. */
1307 redisGetKeysProc *getkeys_proc;
1309 int firstkey; /* The first argument that's a key (0 = no keys) */
1310 int lastkey; /* The last argument that's a key */
1311 int keystep; /* The step between first and last key */
1312 long long microseconds, calls;
/f-stack/app/redis-5.0.5/deps/hiredis/
H A Dhiredis.c1008 void *redisCommand(redisContext *c, const char *format, ...) { in redisCommand() function