Add base version of Redis modules 36/136/3
authorRolf Badorek <rolf.badorek@nokia.com>
Fri, 10 May 2019 13:12:32 +0000 (16:12 +0300)
committerRolf Badorek <rolf.badorek@nokia.com>
Tue, 14 May 2019 11:36:28 +0000 (14:36 +0300)
commit87fd3ca9bf5cc0949dffc44ac68f0964964bee41
tree15248803bd2bc8ec5b9848e82eb587d737b1b40f
parent515cde3de3c29614d26bcae777540d19a3ab8bfe
Add base version of Redis modules

Copied from Nokia internal RCP code repository, revision d452b42d from
branch 'rcp2.0'.

No functional changes compared to above mentioned base version.

Documentation of the available commands added to README file.

Updated `Dockerfile.redis` so that Redis modules are built and
installed to image which is used as a basis for `redis-standalone`
pod.

Change-Id: I32bc59b4f0a60eb3683fdd31e295d57ee68d8430
Signed-off-by: Rolf Badorek <rolf.badorek@nokia.com>
14 files changed:
docker/Dockerfile.redis
redismodule/Makefile.am [new file with mode: 0755]
redismodule/README.md [new file with mode: 0755]
redismodule/autogen.sh [new file with mode: 0755]
redismodule/configure.ac [new file with mode: 0755]
redismodule/include/redismodule.h [new file with mode: 0755]
redismodule/m4/ax_prog_doxygen.m4 [new file with mode: 0755]
redismodule/run-tests.sh.in [new file with mode: 0755]
redismodule/src/exstrings.c [new file with mode: 0755]
redismodule/tst/mock/include/exstringsStub.h [new file with mode: 0755]
redismodule/tst/mock/include/redismodule.h [new file with mode: 0755]
redismodule/tst/mock/src/redismoduleStub.cpp [new file with mode: 0755]
redismodule/tst/src/exstrings_test.cpp [new file with mode: 0755]
redismodule/tst/src/main.cpp [new file with mode: 0755]