I want to be able to use dedicated or co-located caching in my Azure web roles.
The problem is that the application I am migrating uses HttpSessionState
extensively. I don't want to change all of this code because:
This is time consuming (especially with testing)
I can't enforce developers from using
HttpSessionState
I want to avoid vendor locking as much as possible
Is there no session provider for dedicated and co-located caching so that I can keep existing code as is?