mamu
mamu

Reputation: 12414

redis for asp.net mvc, client options?

I am considering using redis for asp.net mvc application, there is no question about production viability of redis itself, i think it's battle tested.

But there is no mention of it anywhere in .net world, only client i can find is from redis site is servicestackredis for c#.

So question is have you used redis for .net application? Is servicestackredis production ready? Any other alternative client for redis?

Upvotes: 6

Views: 3345

Answers (3)

anytao
anytao

Reputation: 11

Wish you can get useful infomation from this post: http://www.servicestack.net/mythz_blog/?p=474

Upvotes: 1

Tom Clarkson
Tom Clarkson

Reputation: 16174

I have been using ServiceStack for a while and find it pretty good, particularly the typed client stuff. I have found bugs in it in the past, but it's well maintained so they don't last for long.

You'll probably want to set up some of your own wrapper classes on top of it though - otherwise you end up with hardcoded keys and connection info in far too many places.

Upvotes: 7

UpTheCreek
UpTheCreek

Reputation: 32401

Have you taken a look at this?: http://github.com/migueldeicaza/redis-sharp/blob/master/READMElink text

Upvotes: 0

Related Questions