Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are .NET memcache libraries production ready?

Tags:

Seeing all the UNIX guys have memcache (PHP, Python, etc.), are the .NET libraries stress tested and equally efficient? (or more?)

like image 441
mrblah Avatar asked Dec 23 '09 17:12

mrblah


2 Answers

Consider Microsoft's Velocity cache. It'll probably be the one that gets the largest support and stress testing.

like image 77
Jeff Moser Avatar answered Oct 24 '22 23:10

Jeff Moser


Velocity is still in Cummunity technical preview (CTP). But I would agree that it's the right technology for people to evaluate from Microsoft for this purpose.

Also, just so it's considered - if you're already using memcached in your environement there is a client library for C# - memcacheddotnet.

I used the memcached client a while back (before rejoining Microsoft) only for testing and not in production - it held up great under a simulated load of my system for 50+ concurrent user testing (which met my requirements) - never went to produciton with it though (timing didn't work out and wasn't strictly needed to satisfy anything business critical at the time).

like image 29
Dave Quick Avatar answered Oct 24 '22 21:10

Dave Quick