Azure Cache (Preview) Step by Step
   Windows Azure Cache is a distributed, in-memory, scalable solution that enables you to build highly scalable and responsive applications by providing super-fast access to data. Cache increases performance by temporarily storing information from other backend sources. High performance is achieved by maintaining this cache in-memory in a distributed environment.  There are mainly 3 types   Cache Service (Preview)   In-Role Cache   Shared Cache  In this post I will explain step by step on how to develop Cache Service (Preview) with in an ASP.net application.  Step 1 : Create Cache  Create a cache for Windows azure cache service.  You can find step by step on how to create here .  Step 2 : Configure Cache  1. Create a ASP.net web project  2. Include Cache Service (Preview) NuGet package in to you project.  for that   Right click on the project References  Select “ Manage NuGet packages ”    Search “ Windows Azure Cache ”. Then select and install the package highlighted in the follow...