Install RediSearch

You have multiple ways to run RediSearch:

  • building from sources and installing it inside an existing Redis Instance
  • using Redis Cloud (when RediSearch module 2.0 available)
  • using Redis Enterprise (when RediSearch module 2.0 available)
  • using Docker

Let’s use Docker for now.

1.1 Open a terminal an run the following command

  1. > docker run -it --rm --name redis-stack \
  2. -p 6379:6379 \
  3. redis/redis-stack:latest

Note: The container will automatically be removed when it exits (--rm parameter).

You have now a Redis instance running with RediSearch installed, let’s discover the basics.


Next: Create Index