What caching mechanism should I use for a .Net web application? Memcached seems to be the best for the LAMP stack and Linux in general, but I’m not so sure that it’s the answer for a .Net web application running on Windows. My requirements are that it be distributed and that it run on Windows.
What caching mechanism should I use for a .Net web application? Memcached seems to
Share
There isn’t a distributed caching system as mature as memcached for Windows, but Velocity is the distributed caching system being built by Microsoft and has a beta version available for download.
Though what I’ve seen a lot of people do is run memcached on Linux, and use one of the .NET clients for memcached in their ASP.net code.