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.
- Run the start.bat script in the project to start directly with one click.
- Use the command line.
- Support running as a system service.
cmd startup:
redis-server.exe redis.confpowershell startup:
./redis-server.exe redis.confCan 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= autoStart service
net start RedisOut of Service
net stop RedisUninstall service
sc.exe delete RedisProject Home: https://github.com/redis-windows/redis-windows
This GitHub organization and its repositories are not affiliated with, endorsed by, or sponsored by Redis Ltd. The license provided here applies only to the content of this repository, and does not apply to the official Redis project or its software.
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.