Searched defs:redisCommand (Results 1 – 2 of 2) sorted by relevance
1299 struct redisCommand { struct1301 redisCommandProc *proc; argument1302 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;
1008 void *redisCommand(redisContext *c, const char *format, ...) { in redisCommand() function