On demand Scaleout usage

#1
Hi,

Is it possible to use Scaleout on demand basis. For instance i don't want to use Scaleout for certain page and for other page i wanna use scaleout.


Thanks,
Saravanan Nallamuthu
 

oshmytov

New member
Staff member
#2
Hi Saravanan,

If you're referring to ScaleOut ASP.NET Session provider, you can disable session state for some of your app's pages (or make session state as read-only) via the @Page directive's EnableSessionState attribute.

Another option is to use a hybrid approach for storing app data in ScaleOut in-memory data grid when you can combine the use of ASP.NET sessions with fine-grain ScaleOut's NamedCache API calls for reading/writing app specific objects from/to the grid, instead of storing all of that data in session.
 
Top