Searched refs:nokey (Results 1 – 5 of 5) sorted by relevance
| /f-stack/app/redis-5.0.5/tests/unit/type/ |
| H A D | hash.tcl | 214 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 D | redismodule.h | 301 …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 D | module.c | 4495 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 D | keyspace.tcl | 116 catch {r rename nokey foobar} err
|
| H A D | sort.tcl | 309 set sorted [r sort tosort BY nokey LIMIT 0 10]
|