Reputation: 6676
I'm considering moving our web app session storage from In Proc to State Server. Can anybody give any figures as to the performance difference?
Upvotes: 1
Views: 1809
Reputation: 119806
I can't give you performance metrics but it won't be as fast as InProc session state due to certain overheads:
That said your session state data will survive application pool and IIS resets which may be the reason you're considering changing.
Upvotes: 3