Searched refs:RedisModuleKey (Results 1 – 6 of 6) sorted by relevance
| /f-stack/app/redis-5.0.5/src/ |
| H A D | redismodule.h | 148 typedef struct RedisModuleKey RedisModuleKey; typedef 205 void REDISMODULE_API_FUNC(RedisModule_CloseKey)(RedisModuleKey *kp); 206 int REDISMODULE_API_FUNC(RedisModule_KeyType)(RedisModuleKey *kp); 207 size_t REDISMODULE_API_FUNC(RedisModule_ValueLength)(RedisModuleKey *kp); 239 int REDISMODULE_API_FUNC(RedisModule_DeleteKey)(RedisModuleKey *key); 240 int REDISMODULE_API_FUNC(RedisModule_UnlinkKey)(RedisModuleKey *key); 244 mstime_t REDISMODULE_API_FUNC(RedisModule_GetExpire)(RedisModuleKey *key); 250 void REDISMODULE_API_FUNC(RedisModule_ZsetRangeStop)(RedisModuleKey *key); 256 int REDISMODULE_API_FUNC(RedisModule_ZsetRangeNext)(RedisModuleKey *key); 257 int REDISMODULE_API_FUNC(RedisModule_ZsetRangePrev)(RedisModuleKey *key); [all …]
|
| H A D | module.c | 148 struct RedisModuleKey { struct 166 typedef struct RedisModuleKey RedisModuleKey; argument 299 void RM_CloseKey(RedisModuleKey *key); 303 void RM_ZsetRangeStop(RedisModuleKey *kp); 1519 RedisModuleKey *kp; in RM_OpenKey() 1546 void RM_CloseKey(RedisModuleKey *key) { in RM_CloseKey() 1558 int RM_KeyType(RedisModuleKey *key) { in RM_KeyType() 1594 int RM_DeleteKey(RedisModuleKey *key) { in RM_DeleteKey() 1608 int RM_UnlinkKey(RedisModuleKey *key) { in RM_UnlinkKey() 1940 void zsetKeyReset(RedisModuleKey *key) { in zsetKeyReset() [all …]
|
| /f-stack/app/redis-5.0.5/src/modules/ |
| H A D | helloworld.c | 65 RedisModuleKey *key = RedisModule_OpenKey(ctx,argv[1], in HelloPushNative_RedisCommand() 137 RedisModuleKey *srckey = RedisModule_OpenKey(ctx,argv[1], in HelloListSplice_RedisCommand() 139 RedisModuleKey *dstkey = RedisModule_OpenKey(ctx,argv[2], in HelloListSplice_RedisCommand() 184 RedisModuleKey *srckey = RedisModule_OpenKey(ctx,argv[1], in HelloListSpliceAuto_RedisCommand() 186 RedisModuleKey *dstkey = RedisModule_OpenKey(ctx,argv[2], in HelloListSpliceAuto_RedisCommand() 282 RedisModuleKey *key = RedisModule_OpenKey(ctx,argv[1], in HelloRepl2_RedisCommand() 317 RedisModuleKey *key = RedisModule_OpenKey(ctx,argv[1], in HelloToggleCase_RedisCommand() 359 RedisModuleKey *key = RedisModule_OpenKey(ctx,argv[1], in HelloMoreExpire_RedisCommand() 385 RedisModuleKey *key = RedisModule_OpenKey(ctx,argv[1], in HelloZsumRange_RedisCommand() 435 RedisModuleKey *key = RedisModule_OpenKey(ctx,argv[1], in HelloLexRange_RedisCommand() [all …]
|
| H A D | hellotype.c | 107 RedisModuleKey *key = RedisModule_OpenKey(ctx,argv[1], in HelloTypeInsert_RedisCommand() 143 RedisModuleKey *key = RedisModule_OpenKey(ctx,argv[1], in HelloTypeRange_RedisCommand() 179 RedisModuleKey *key = RedisModule_OpenKey(ctx,argv[1], in HelloTypeLen_RedisCommand()
|
| H A D | testmodule.c | 134 …RedisModuleKey *k = RedisModule_OpenKey(ctx, RedisModule_CreateStringPrintf(ctx, "unlinked"), REDI… in TestUnlink()
|
| /f-stack/app/redis-5.0.5/tests/modules/ |
| H A D | commandfilter.c | 55 … RedisModuleKey *log = RedisModule_OpenKey(ctx, log_key_name, REDISMODULE_WRITE|REDISMODULE_READ); in CommandFilter_LogCommand()
|