@bsbodden I installed the redis as per the official documentation
curl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/redis.list
sudo apt-get update
sudo apt-get install redis
But now getting empty module list in terminal.
Here is the screenshot
Comment From: sundb
isn't that right? Redis itself doesn't come with modules, do you want RedisStack?
Comment From: pradeepdev-1995
@sundb Thanks for your reply.
Actually I am getting the given error in my client code
ValueError: Required Redis database module searchlight with version >= 20600 not installed. Refer to Redis Stack documentation: https://redis.io/docs/stack/
So to get searchlight which module I should install RedisStack or RediSearch.
Also share the steps to install these modules in ubuntu system
Comment From: sundb
@pradeepdev-1995 you can use RedisStack which includes the RedisSearch.
Comment From: pradeepdev-1995
@sundb Can you share the steps to install Redisstack?
Comment From: sundb
please see this document: https://redis.io/docs/latest/operate/oss_and_stack/install/install-stack/
Comment From: pradeepdev-1995
@sundb
it says redis stack server is already installed in my machine
also I started and it seems redis stack server is running properly also
but still I am getting the error in the terminal
ValueError: Required Redis database module searchlight with version >= 20600 not installed. Refer to Redis Stack documentation: https://redis.io/docs/stack/
Comment From: sundb
@pradeepdev-1995 you should start redis-stack-server by redis-stack-server, not redis-server.
you will see module 'modulename' loaded from *.so from the log.