Step 1: about JDK version
Step 2: what is redis
Step 3: redis official website
Step 4: download and unzip
Step 1: About JDK version
At least use jdk8. Please download jdk8 or higher: Download and configure JDK environment
Step 2: what is redis
Redis is an open-source log and key value database written in ANSI C language, which supports the network, can be memory based and persistent, and provides APIs in multiple languages.
In other words, redis is like a HashMap, but it does not run in the JVM, but in the form of an independent process.
In general, it is used as a cache. Because it is faster than the database (MySQL), the commonly used data can be considered here to improve the performance.
Step 3: redis official website
This tutorial explains how to install redis on Windows
Redis official website: http://redis.io
The download address of Windows version is: http://redis.io/download
After clicking in, you will jump to: https://github.com/mythz/redis-windows
It is an open source project, so after downloading from GitHub, you need to compile and generate the EXE file yourself. However, in order to compile and generate the EXE file, you need to use a set of visual studio, which is very troublesome.
So I typed a compressed package after the compilation and put it in the download area (click to enter) redis-64.3.0.503 Zip, convenient for everyone to download.
There are only 64 bit ones, but no 32-bit ones. You can only find a 32-bit one of redis2.4. However, the usage is the same. Let’s use it together
Step 4: Download and unzip
As shown in the figure, the download area (click to enter) downloads and decompresses to get the client and server~
Pay attention to whether your operating system is 32 or 64, and use the matching one
For more information, click to learn: https://how2j.cn/k/redis/redis-download-install/1367.html