Skip to content

redis-windows/redis-windows

Repository files navigation

Redis Windows Version

With the powerful automated building capability of GitHub Actions, we can compile the latest version of Redis for Windows system in real-time.

The entire compilation process is completely transparent and open, with the compilation script located in the .github/workflows/ directory and the compilation logs available on the Actions page. In addition, we have added a hash calculation step when the compilation is completed, and the result is printed in the log. This is unmodifiable and recorded in the release page. You can verify the hash value of the downloaded file against the log and release page.
Our project is absolutely pure and without any hidden features, and can withstand the scrutiny of all experts. If you have any good ideas, please feel free to communicate with us.

We provide three operation modes:

  1. Run the start.bat script in the project to start directly with one click.
  2. Use the command line.
  3. Support running as a system service.

Command line startup:

cmd startup:

redis-server.exe redis.conf

powershell startup:

./redis-server.exe redis.conf

Service installation:

Can achieve automatic startup on boot. Please run it as an administrator and change RedisService.exe to the actual directory where it is stored.

sc.exe create Redis binpath=C:\Software\Redis\RedisService.exe start= auto

Start service

net start Redis

Out of Service

net stop Redis

Uninstall service

sc.exe delete Redis

image

Project Home: https://github.com/redis-windows/redis-windows

Acknowledgement:

NetEngine JetBrains Logo (Main) logo

Disclaimer

We suggest that you use it for local development and follow Redis official guidance to deploy it on Linux for production environment. This project doesn't bear any responsibility for any losses caused by using it and is only for learning and exchange purposes.