microsoftarchive / redis

Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes
http://redis.io
Other
20.81k stars 5.37k forks source link

Redis sentinel binaries #462

Closed effyteva closed 8 years ago

effyteva commented 8 years ago

Hi,

Could you please publish Redis Sentinel binaries in the release file as well? This could save some users from compiling it using VS2013. I just tried to compile using VS2015 and ran into multiple issues.

Thanks.

enricogior commented 8 years ago

Hi @effyteva the sentinel binaries are just the redis-server binaries renamed to redis-sentinel. You can make a copy of redis-server.exe and rename it redis-sentinel.exe or simply run: redis-server.exe sentinel.conf --sentinel.

effyteva commented 8 years ago

Thank you, I didn't know that. I'd recommend adding this to the docs. :+1: