Caching in the .NET Stack: Inside-Out

Posted by Elton Stoneman on Geeks with Blogs See other posts from Geeks with Blogs or by Elton Stoneman
Published on Thu, 27 Jun 2013 17:21:24 GMT Indexed on 2013/06/28 4:22 UTC
Read the original article Hit count: 485

Filed under:
|

Originally posted on: http://geekswithblogs.net/EltonStoneman/archive/2013/06/28/caching-in-the-.net-stack-inside-out.aspx

I'm delighted to have my first course published on Pluralsight - Caching in the .NET Stack: Inside-out.
 
It's a pretty comprehensive look at caching in .NET solutions. The first half covers using local, remote and persistent cache stores inside the solution, including the .NET MemoryCache, NCache Express, AppFabric Caching, memcached, Azure Table Storage and local disk stores. The second half covers caching outside the solution in HTTP clients and proxies, and how to set up ASP.NET WebForms, MVC, Web API and WCF projects to use HTTP validation and expiration caching.
 
The course takes a hands-on approach, starting with a distributed solution that has no caching, analysing key points which can benefit from caching, and adding different types of cache. At the end of the course I run through a set of before and after performance tests, stressing the solution under load. Without caching and with 60 concurrent users the page response time maxes out at 18 seconds - with caching that falls to 2 seconds, so it's a huge improvement from very little effort.

I’d be glad to hear feedback if you watch the course, especially if it’s as positive as my editor’s.

© Geeks with Blogs or respective owner

Related posts about caching

Related posts about Pluralsight