2. Install Redisearch
You have multiple ways to run RediSearch:
- building from sources and installing it inside an existing Redis Instance
- using Redis Cloud
- using Redis Enterprise
- using Docker
Let's use Docker for now.
1.1 Open a terminal an run the following command
> docker run -it --rm --name redis-search-2 \
-p 6379:6379 \
redislabs/redisearch:2.0.2
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.