I am planning for a application which will be deployed on Windows Azure. The web role will have multiple instances. I see that with multiple instances in-proc
session will not work.I see that I have following ways to manage my session
Use Azure Storage
SQL Azure
AppFabric
I don't want to go with option 2 (SQL Azure).
Which option should I choose?
Update 1
I came across this post which demonstrates session affinity on Azure with Aplication Request Routing(ARR). How about going with this option, instead of above?