We have various related session variables for a complex page that has various things going on. Currently these session values are individual page properties (Guid, String, Integer etc). If I had a serializable object with these properties and saved this in the session, would it be more efficient?
|
|
It's unlikely to be a problem but you might consider storing page specific values in ViewState instead. I create a static class called SessionInfo that wraps access to session variables, for example:
|
||||||
|
|
|
No problem as long as the class is small and compact and is not much functional. You can create immutable structure to this if you need not alter the values once created more frequently. You can always overwrite with new structure upon any modification. Here's some code.
|
||||||||
|
|
|
If performance is a major concern, then you may want to look at optimizing the serialization of the session content. Serialization/deserialization becomes a bigger bottleneck when you scale out to a Session Server or use SQL Server to manage session state. From MSDN Magazine:
As always, measure your performance first before making any optimizations. |
||||
|
