- It is an unofficial version of Redis for Windows X64 system
- You can find the release of Redis for Windows on releases page. Please test it and report any issues, thanks in advance!
If you want to know more, this is a list of selected starting points:
Introduction to Redis data types. https://redis.io/topics/data-types-intro
Try Redis directly inside your browser. https://try.redis.io
The full list of Redis commands. https://redis.io/commands
There is much more inside the official Redis documentation. https://redis.io/documentation
This release is based on Redis. It has passed all the standard tests.
Due to the many functional differences between windows and linux,There are still unknown issues/bugs, in particular there is a bug to work properly in certain scenarios. If you download and install it, you accept the following agreement by default:
NO LIABILITY FOR DAMAGES
In no event shall the author of this Software be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use of or inability to use this product, even if the Author of this Software has been advised of the possibility of such damages.
- Redis binaries are built with the original source Redis and have been compiled with free Visual Studio 2019 (VC16,Community Edition, version 16.2.5) to obtain higher performance and better stability than the binaries built by MSYS
- Redis can be installed as a Windows Service.
- Windows Vista x64
- Windows Server 2008 x64
- Windows Server 2012 x64
- Windows Server 2016/2019 x64
- Windows 7 x64
- Windows 10/11 x64
-
Default configrations
save ""
maxmemory 512mb
appendonly no
maxmemory-policy allkeys-lru
-
if you want to modify parameters,it is recommanded you edit the redis.conf file
-
Self elevation of the Redis executable so that service commands would work from a non-elevated command prompt.
-
Service naming so that multiple instances of the Redis service could be installed on one machine.
-
Automatically adjusting folder permissions so that when Redis is run under the NETWORK SERVICE account it could modify the files in the installation directory.
you also can use the following command and manage redis service:
--service-install
This must be the first argument on the redis-server command line. Arguments after this are passed in the order they occur to Redis when the service is launched. The service will be configured as Autostart and will be launched as "NT AUTHORITY\NetworkService". Upon successful installation a success message will be displayed and Redis will exit.
This command does not start the service.
For instance:
redis-server --service-install redis.conf --loglevel verbose
--service-uninstall
This will remove the Redis service configuration information from the registry. Upon successful uninstallation a success message will be displayed and Redis will exit.
This does command not stop the service.
For instance:
redis-server --service-uninstall
--service-start
This will start the Redis service. Upon successful start, a success message will be displayed and Redis will begin running.
For instance:
redis-server --service-start
--service-stop
This will stop the Redis service. Upon successful termination a success message will be displayed and Redis will exit.
For instance:
redis-server --service-stop
--service-name name
This optional argument may be used with any of the preceding commands to set the name of the installed service. This argument should follow the service-install, service-start, service-stop or service-uninstall commands, and precede any arguments to be passed to Redis via the service-install command.
The following would install and start three separate instances of Redis as a service:
redis-server --service-install --service-name redisService1 redis.conf redis-server --service-start --service-name redisService1
The following would stop and uninstall three separate instances of Redis as a service:
redis-server --service-stop --service-name redisService1 redis-server --service-uninstall --service-name redisService1