-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started
D G Starkweather edited this page Feb 8, 2020
·
1 revision
There are no build dependencies, so building should be easy enough. Just do the usual:
cmake .
make all
make install
make test
For the record, I used gcc 8.3.0, but the version shouldn't be finicky. Just make sure you have a compiler that supports c++11 standard.
Be sure to have an installation of redis available.
Put this in your redis configuration file, redis.conf: loadmodule /var/local/lib/reventis.so
And then restart redis: systemctl restart redis-server.service
Or you can load it manually into redis by doing the following
in the redis-cli: module load /var/local/lib/reventis.so
Check to see if its there with : module list
However, loading manually is not convenient when you need to unload/reload in a new compiled version of the module (for debugging purposes).