vote up 13 vote down star
9

I've been paying some attention to Microsoft's fairly recent promoting of Velocity as a distributed caching solution that would compete with the likes of Memcached.

I've been looking for a 64bit version of Memcached for Windows for some time now with no luck, and since everything about the ASP.Net MVC project I'm working on is 64bit, it doesn't make sense to use anything but 64bit.

Now we're already hedging our bets with ASP.NET MVC in Beta (RTM soon hopefully), but StackOverflow doesn't seem to be doing too badly, so I have limited concerns there. But Velocity is still very much an unknown quantity and will still be Beta (or CTP) for ages - but it does have 64bit!

Does anyone have relevant experience or point of view to offer in this situation? Should we bide our time for Velocity - is it even anywhere near good enough to compete with a giant like Memcached, or should we invest time trying to get a 64bit version of Memcached going?

flag

Great question - I'd like to hear from developers experienced with both these products. – Guy Jan 27 at 19:12

3 Answers

vote up 6 vote down check

We have done recently a fair amount of comparing of Velocity and Memcached. In the nutshell, we found Velocity to be 3x - 5x slower than Memcached, and (even more crucially) it does not have currently support for a multi-get operation. So at the moment, I would recommend going with Memcached. Also, another lesson we have learned was that the slowest operation in distributed caching is serialization and deserialization (at least in ASP.NET). The in-process ASP.NET cache is order of magnitudes faster. So you have to choose caching strategies much more carefully.

link|flag
3  
Velocity does provide more features (locking, replication, object tagging to name couple performance-impacting ones) -- oftentimes the decision is not just about raw put/get performance of the cache – pcawa27 Mar 5 at 18:18
3  
Update. New Performance Improvements In New CTP – Elijah Glover Jun 7 at 11:21
vote up 0 vote down

If you don't mind paying for a license, you can use Scale Out State Server, which I talk about in my answer to a similar question here. They have both 32- and 64-bit versions.

EDIT: Despite the name of the product, it handles both Session State and distributed caching.

link|flag
Caching isn't the same as ASP.NET session tracking in my book. But thanks for the suggestion. – Dan Esparza Sep 15 at 19:19
Agreed, but SOSS does both. – Daniel Schaffer Sep 15 at 21:09
vote up 0 vote down

Memcached has some open source libraries if I'm not mistaken so if you want to go the 64bit route can you not just recompile?

I evaluated Velocity when it first arrived but came to the conclusion it was a bit undeveloped at that stage. Being able to run memcached on non-windows servers is also a bonus.

link|flag
You're right, libevent is something it uses, but unfortunately when it comes to memory management, you can't just compile it to 64bit directly - some tweaks need to be made by those who know how - I'm not one of those unfortunately :-) Otherwise, it becomes very unstable. – Rob G Jan 29 at 19:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.