2

Does Booksleeve work with a windows Redis (Redis installed as a Windows Service) ?

I Installed Redis as a Windows Service and I wanted to know if it was possible to use BookSleeve with it? Or is BookSleeve exclusively for a Redis installed on a Unix system?

Community
  • 1
  • 1
goamn
  • 1,427
  • 1
  • 19
  • 33

2 Answers2

3

It won't care, or even be aware of that fact. the protocol is the same either way, and it should work just fine.

Note also that there is now a supported MS fork, which can be easily installed via chocolatey or nuget via the name "Redis-64".

Marc Gravell
  • 927,783
  • 236
  • 2,422
  • 2,784
2

Redis listens the same way whether it runs as a service or process. Booksleeve connects the same way and shouldn't know the difference.

If this is a new project, you may want to consider looking into StackExchange.Redis. It has succeeded Booksleeve and has the same people working on it. Typically you will want to pick the more active project and StackExchange.Redis is used here on StackOverflow.

https://github.com/StackExchange/StackExchange.Redis

Stradas
  • 1,629
  • 16
  • 16