mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 18:54:58 +00:00
39 lines
1.3 KiB
C
39 lines
1.3 KiB
C
|
#include "redismodule.h"
|
||
|
#include <strings.h>
|
||
|
|
||
|
/* Second module configs module, for testing.
|
||
|
* Need to make sure that multiple modules with configs don't interfere with each other */
|
||
|
int bool_config;
|
||
|
|
||
|
int getBoolConfigCommand(const char *name, void *privdata) {
|
||
|
REDISMODULE_NOT_USED(privdata);
|
||
|
if (!strcasecmp(name, "test")) {
|
||
|
return bool_config;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int setBoolConfigCommand(const char *name, int new, void *privdata, RedisModuleString **err) {
|
||
|
REDISMODULE_NOT_USED(privdata);
|
||
|
REDISMODULE_NOT_USED(err);
|
||
|
if (!strcasecmp(name, "test")) {
|
||
|
bool_config = new;
|
||
|
return REDISMODULE_OK;
|
||
|
}
|
||
|
return REDISMODULE_ERR;
|
||
|
}
|
||
|
|
||
|
/* No arguments are expected */
|
||
|
int RedisModule_OnLoad(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
|
||
|
REDISMODULE_NOT_USED(argv);
|
||
|
REDISMODULE_NOT_USED(argc);
|
||
|
if (RedisModule_Init(ctx, "configs", 1, REDISMODULE_APIVER_1) == REDISMODULE_ERR) return REDISMODULE_ERR;
|
||
|
|
||
|
if (RedisModule_RegisterBoolConfig(ctx, "test", 1, REDISMODULE_CONFIG_DEFAULT, getBoolConfigCommand, setBoolConfigCommand, NULL, &argc) == REDISMODULE_ERR) {
|
||
|
return REDISMODULE_ERR;
|
||
|
}
|
||
|
if (RedisModule_LoadConfigs(ctx) == REDISMODULE_ERR) {
|
||
|
return REDISMODULE_ERR;
|
||
|
}
|
||
|
return REDISMODULE_OK;
|
||
|
}
|