RedisModulesSDK icon indicating copy to clipboard operation
RedisModulesSDK copied to clipboard

Tools, utilities and scripts to help you write redis modules!

Results 17 RedisModulesSDK issues
Sort by recently updated
recently updated
newest added

The `-Og` parameter was introduced in in gcc 4.8. When running `make` with older versions of gcc (as the default one in OSX/XCode), the following error message appears: error: invalid...

Hi, in the file redismodule.h I cannot find the reference to the non blocking api. http://redis-module-redoc.readthedocs.io/en/latest/BLOCK/ It this by design or we are just not up to date? I believe...

1. In `API.md`: the generated module API document is currently named `FUNCTIONS.md`, instead of `API.md`. 2. In `API.md`: `RedisModule_OpenKey` should use `REDISMODULE_WRITE` (instead of `REDISMODULE_READ`) to use `RedisModule_StringSet`. 3. Some...

If I use this repository as so : ``` export RM_INCLUDE_DIR=$(pwd)/7.0 make clean make make run ``` I get the following output/error : ``` root@cd9eedca996e:~/RedisModulesSDK# make make -C ./example make[1]:...

This PR fixes a potential security vulnerability in _sdsMakeRoomFor that was cloned from https://github.com/redis/redis but did not receive the security patch. ### Details: Affected Function: _sdsMakeRoomFor in rmutil/sds.c Original Fix:...

I am running a server version 8.2.1 but there is no version 8.0 of the header file

Hello team, Trying to build an example module with the `redismodule.h`copied in this repo did not work, but it worked when I took it from the `redis` main repository. Perhaps...