You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.6 KiB
Markdown

9 years ago
# RedisModulesSDK
9 years ago
9 years ago
This little repo is here to help you write Redis modules a bit more easily.
9 years ago
## What it includes:
9 years ago
### 1. redismodule.h
9 years ago
The only file you really need to start writing Redis modules. Either put this path into your module's include path, or copy it.
Notice: This is an up-to-date copy of it from the Redis repo.
9 years ago
9 years ago
### 2. LibRMUtil
9 years ago
9 years ago
A small library of utility functions and macros for module developers, including:
9 years ago
* Easier argument parsing for your commands.
* Testing utilities that allow you to wrap your module's tests as a redis command.
* `RedisModuleString` utility functions (formatting, comparison, etc)
* The entire `sds` string library, lifted from Redis itself.
* A generic scalable Vector library. Not redis specific but we found it useful.
* A few other helpful macros and functions.
* `alloc.h`, an include file that allows modules implementing data types to implicitly replace the `malloc()` function family with the Redis special allocation wrappers.
9 years ago
It can be found under the `rmutil` folder, and compiles into a static library you link your module against.
9 years ago
### 3. An example Module
9 years ago
A minimal module implementing a few commands and demonstarting both the Redis Module API, and use of rmutils.
You can treat it as a template for your module, and extned its code and makefile.
**It includes 3 commands:**
* `EXAMPLE.PARSE` - demonstrating rmutil's argument helpers.
* `EXAMPLE.HGETSET` - an atomic HGET/HSET command, demonstrating the higher level Redis module API.
* `EXAMPLE.TEST` - a unit test of the above commands, demonstrating use of the testing utilities of rmutils.
9 years ago
### 4. Documentation Files:
9 years ago
1. [API.md](API.md) - The official manual for writing Redis modules, copied from the Redis repo.
Read this before starting, as it's more than an API reference.
2. [FUNCTIONS.md](FUNCTIONS.md) - Generated API reference documentation for both the Redis module API, and LibRMUtil.
3. [TYPES.md](TYPES.md) - Describes the API for creating new data structures inside Redis modules,
copied from the Redis repo.
9 years ago
9 years ago
# Quick Start Guide
9 years ago
Here's what you need to do to build your first module:
0. Build Redis in a build supporting modules.
1. Build librmutil: `cd rmutil && make`
2. Build the example module: `cd example && make`
3. Run redis loading the module: `/path/to/redis-server --loadmodule ./example/module.so`
Now run `redis-cli` and try the commands:
```
127.0.0.1:9979> EXAMPLE.HGETSET foo bar baz
(nil)
127.0.0.1:9979> EXAMPLE.HGETSET foo bar vaz
"baz"
127.0.0.1:9979> EXAMPLE.PARSE SUM 5 2
(integer) 7
127.0.0.1:9979> EXAMPLE.PARSE PROD 5 2
(integer) 10
127.0.0.1:9979> EXAMPLE.TEST
PASS
```
Enjoy!
9 years ago