Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing Redis 4 (latest stable version) on windows

Tags:

windows

redis

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.

like image 888
Temp O'rary Avatar asked Feb 04 '23 02:02

Temp O'rary


2 Answers

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.

like image 74
Tomasz Poradowski Avatar answered Feb 15 '23 09:02

Tomasz Poradowski


Use Docker for Windows. Then install redis the normal way.

docker run --name some-redis -p 6379 -d redis
like image 27
Jon49 Avatar answered Feb 15 '23 08:02

Jon49