diff --git a/example/module.c b/example/module.c index b990a70..8e5f294 100644 --- a/example/module.c +++ b/example/module.c @@ -137,7 +137,7 @@ int RedisModule_OnLoad(RedisModuleCtx *ctx) { } // register example.hgetset - using the shortened utility registration macro - RMUtil_RegisterWriteCmd(ctx, "example.hgetset", HGetSetCommand); + RMUtil_RegisterWriteCmd(ctx, "example.hgetset", HGetSetCommand, "fast"); // register the unit test RMUtil_RegisterWriteCmd(ctx, "example.test", TestModule);