I built MSOpenTech redis and installed it as a service on Windows 7. Using the cli it appears to be working great. So then I needed a client that was as simple as possible and was compatible with .NET 3.5 so I picked redis-sharp. It built just fine (VS 2010), and it connects to the redis server on localhost port 6379 as is normal. But with the very first "r.Set("foo", "bar")" it fails. More accurately, it sets key "foo" to "3" instead of bar and then all other commands fail after that. I then thought I would isolate the client vs. the server, but trying to connect to another server running redis failed even though I can ping it.
I have two questions: 1) Is there a known redis open-source client for C# that can run on .NET 3.5 (I know redis-sharp is supposed to be that client)? 2) Is MSOpenTech redis stable and have a known client that works with it?