Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 882 Bytes

002-install-redisearch.md

File metadata and controls

27 lines (17 loc) · 882 Bytes

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

> docker run -it --rm --name redis-stack \
   -p 6379:6379 \
   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