redis-server --version
redis-cli --version
apt-get install build-essential
git clone https://github.com/RedisJSON/RedisJSON.git
git checkout v1.0.3
cd rejson/
make
cd src/
mkdir /etc/redis/modules/
mv rejson.so /etc/redis/modules/
loadmodule /etc/redis/modules/rejson.so
service redis-server restart
--
Hi,
I ran into a severe problem today while trying to load this module.
After adding the line
loadmodule /etc/redis/modules/rejson.so
to redis.conf file (below other lines that started with loadmodule) and restarting the redis-server I found out that almost all my data got deleted. It was saved before and somehow only 3 keys were loaded this time.I'm using Ubuntu 18.04 WSL (in Windows 10 PowerShell).
Can you please check whether it's a bug or tell if I did anything wrong?