RedisModulesSDK
RedisModulesSDK copied to clipboard
Tools, utilities and scripts to help you write redis modules!
``` 450850:M 23 Sep 2020 22:14:20.938 # Module ./module.so failed to load: ./module.so: undefined symbol: RedisModule_ReplySetArrayLength ``` Since commit 7028f206c9bd2438a27eb61b2339dffd43d1f929 I have been getting this error with newly compiled modules...
Hi `RedisLabsModules/RedisModulesSDK`! This is a one-off automatically generated pull request from LGTM.com :robot:. You might have heard that we’ve integrated LGTM’s underlying CodeQL analysis engine natively into GitHub. The result...
[MOD-4075](https://redislabs.atlassian.net/browse/MOD-4075)
related to redis/redis#11283
- Adapted scheme used in RediSearch (i.e., REDISMODULE_XAPI_* macros) - Have X in REDISMODULE_XAPI_*(X) receive (TYPE, NAME, ARGS) tripplet instead of (NAME), which makes it possible to avoid double-dipping of...
Whenever I include any usage of `RedisModule_Log`, Redis crashes when I try to load the module. Any ideas here? Doing this inside docker fyi. Example of usage... `RedisModule_Log(ctx, "warning", "RedisModule_OnLoad,...
Replacing the void * cast to the real type cast to avoid compilation error on MacOSX. On MacOSX this error is raised by the clang compiler: `rmutil/sds.h:110:13: error: cannot initialize...
This code adds support for testing within Redis. We might want to abstract the 'testmodule' code itself to make the assertion functions more generic.. (they are *still* pretty generic, but...