Reputation: 5828
How can I install Redis latest stable version (4.0) on Windows? I checked MSOpenTech's GitHub page it has an older version and archived.
Upvotes: 11
Views: 20183
Reputation: 1380
If you are interested in native version of Redis for Windows - please check the updated fork of the mentioned MSOpenTech's repository here: https://github.com/tporadowski/redis/releases
This is a merge of latest 3.2.100 from MSOpenTech/redis and original Redis 4.0.2. Please read the details of what is and what is not supported at the moment and note that this is still in "alpha" state.
Upvotes: 9
Reputation: 4606
Use Docker for Windows
. Then install redis
the normal way.
docker run --name some-redis -p 6379 -d redis
Upvotes: 3