Home
last modified time | relevance | path

Searched refs:nokey (Results 1 – 5 of 5) sorted by relevance

/f-stack/app/redis-5.0.5/tests/unit/type/
H A Dhash.tcl214 lappend rv [r hdel smallhash nokey]
215 lappend rv [r hdel bighash nokey]
249 lappend rv [r hexists smallhash nokey]
252 lappend rv [r hexists bighash nokey]
/f-stack/app/redis-5.0.5/src/
H A Dredismodule.h301 …DISMODULE_API_FUNC(RedisModule_DictGetC)(RedisModuleDict *d, void *key, size_t keylen, int *nokey);
302 …*REDISMODULE_API_FUNC(RedisModule_DictGet)(RedisModuleDict *d, RedisModuleString *key, int *nokey);
H A Dmodule.c4495 void *RM_DictGetC(RedisModuleDict *d, void *key, size_t keylen, int *nokey) { in RM_DictGetC() argument
4497 if (nokey) *nokey = (res == raxNotFound); in RM_DictGetC()
4502 void *RM_DictGet(RedisModuleDict *d, RedisModuleString *key, int *nokey) { in RM_DictGet() argument
4503 return RM_DictGetC(d,key->ptr,sdslen(key->ptr),nokey); in RM_DictGet()
/f-stack/app/redis-5.0.5/tests/unit/
H A Dkeyspace.tcl116 catch {r rename nokey foobar} err
H A Dsort.tcl309 set sorted [r sort tosort BY nokey LIMIT 0 10]