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: README.md
+13-10Lines changed: 13 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,26 +16,20 @@ In order to start and run this application, you will need:
16
16
17
17
* Java 8 JDK or higher
18
18
*[Maven](https://maven.apache.org/)
19
-
* Access to a local or remote installation of [Redis](https://redis.io/download) version 5 or newer (local preferred, Docker is a good option - see instructions below)
20
-
* If you want to try the RedisTimeSeries exercises, you'll need to make sure that your Redis installation also has the [RedisTimeSeries Module](https://oss.redis.com/redistimeseries/) installed (or use the provided Docker Compose file which gives you Redis with RedisTimeSeries)
19
+
* Access to a local or remote installation of [Redis Stack](https://redis.io/docs/stack/get-started/install/) (local preferred, Docker is a good option - see instructions below)
* Optional but recommended: [RedisInsight](https://redis.com/redis-enterprise/redis-insight/) to visualize the data in Redis. This is a graphical alternative to the `redis-cli` command
23
22
24
-
If you're using Windows, check out the following resources for help with running Redis:
25
-
26
-
*[Redis Blog - Running Redis on Windows 10](https://redis.com/blog/redis-on-windows-10/)
27
-
*[Microsoft - Windows Subsystem for Linux Installation Guide for Windows 10](https://docs.microsoft.com/en-us/windows/wsl/install-win10)
28
-
29
-
Running Redis with Docker
23
+
Running Redis Stack with Docker
30
24
---
31
25
32
-
We've provided a Docker Compose file as part of this repo, so to start Redis with the RedisTimeSeries module installed, use the following command:
26
+
We've provided a Docker Compose file as part of this repo, so to start Redis Stack, use the following command:
33
27
34
28
```bash
35
29
docker-compose up -d
36
30
```
37
31
38
-
This will start a Redis with RedisTimeSeries container on localhost port 6379 with no password and you should see output similar to the following:
32
+
This will start a Redis Stack container with Redis exposed on localhost port 6379 with no password. You should see output similar to the following:
39
33
40
34
```
41
35
Creating network "ru102j_default" with the default driver
@@ -113,6 +107,15 @@ To rebuild the application without running the tests:
113
107
mvn package -DskipTests
114
108
```
115
109
110
+
Optional (but Recommended): RedisInsight
111
+
---
112
+
113
+
RedisInsight is a graphical tool for viewing data in Redis and managing Redis server instances. You don't need to install it to be successful with this course, but we recommend it as a good way of viewing data stored in Redis.
114
+
115
+
To use RedisInsight, you'll need to [download it](https://redis.io/docs/ui/insight/) then point it at your Redis instance.
116
+
117
+
If you're using the Docker Compose file provided with this course to run Redis Stack, you can optionally choose to access a web-based version of Redis Stack at `http://localhost:8001` whenever the container is running.
0 commit comments