Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 922 Bytes

README.md

File metadata and controls

25 lines (13 loc) · 922 Bytes

RedisModules

This repo introduces how to write redis loadable modules with golang.

There are also some redis loadable modules written in C.

Contents

example

example/basic simple echo module written in go

example/pfunc_bridge simple echo module written in go, use function bridge to call API defined in redismoule.h in golang code.

example/benchmark simple benchmark for all modules in example/basic

redis modules written with golang

modules/password fork of pasword, written in go

modules/graphicsmagick fork of graphicsmagick, written in go

redis modules written with C

c-modules/cmd_router a command router between redis client and redis server