Google News
logo
Microsoft Azure - Interview Questions
What are some other ways to manage session states in Azure?
Some other ways to manage session states are :
 
* Windows Azure AppFabric caching : It is a distributed in-memory cache service giving fast access, and is officially supported by Microsoft. However, it is slightly expensive. Microsoft recommends this option and is automated provisioned based on the Windows Server AppFabric Caching Technology.

* InProc session : It stores the session in the web server’s memory, thus giving faster access. It is cost-effective but valid for a single instance only.
Advertisement