Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

redis for asp.net mvc, client options?

Tags:

redis

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?

like image 472
mamu Avatar asked Oct 13 '10 02:10

mamu


2 Answers

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.

like image 160
Tom Clarkson Avatar answered Oct 11 '22 04:10

Tom Clarkson


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

like image 20
anytao Avatar answered Oct 11 '22 04:10

anytao