You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/001-introduction.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Introduction
2
2
3
-
In this tutorial you will learn how to install and use the [RediSearch](https://redisearch.io) module that provides an indexing and full text search engine for Redis.
3
+
In this tutorial you will learn how to use the [redis-stack](https://redis.io/docs/stack/get-started/install/docker/) image to use the [redisearch module](https://redis.io/docs/stack/search/) that provides an indexing and full text search engine for Redis.
4
4
5
5
RediSearch provides a simple and fast way to index and query data using any field (secondary index), and do search and aggregation on an indexed dataset.
Copy file name to clipboardExpand all lines: docs/010-application-development.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -40,9 +40,10 @@ To run the application:
40
40
41
41
This Docker Compose will start:
42
42
43
-
1.RediSearch instance on port 6380, and import all movies, actors and create indexes
43
+
1.A Redis Stack container on port 6379. The redis-cli can be used with this container once the ports are exposed
44
44
1. The Java, Node and Python REST Services available on port 8085, 8086, 8087
45
45
1. The frontend on port 8084
46
+
1. A second RediStack container will start on port 6380 just to load the sample data to the redis stack instance running on port 6379. This container exits once the sample data has been loaded to the 6379 container
46
47
47
48
Once started you can access the application and its services using the following URLs:
0 commit comments