vote up 0 vote down star

Say you want to share some resource, like a class or a variable across all threads/sessions within a ASP.NET web application. What is better?

1) A static variable having thread-safe accessors to that static variable?

2) Or a ASP.NET application session variable?

flag

This is a dupe of stackoverflow.com/questions/303725/… – IainMH May 21 at 17:18
Ahh ok... I didn't see that... what should I do just close this question then? – Roberto Sebestyen May 21 at 17:33

3 Answers

vote up 3 vote down check

If you only have one of those, there is little difference.

If you have several, you should use static variables rather than Application variables. The Application.Lock method will lock all Application variables, while you can use separate syncronisition identifiers for your static variables, so that each lock only affects the code that accesses that specific variable.

link|flag
vote up 0 vote down

That's true session variables should only be used for if you want to store the value for the whole session, but in the case you want the variables to be intitialized and to be used in between the forms and if changed in betwwen should be available through the whole application for the same object must use static variables.

link|flag
vote up 0 vote down

This is a common scenario in which you are going through multiple pages and collecting data. I would use a Session object for this scenario. Static variables should be used when the complete application is in need for the same object.

If the value you want to hold is dependent on the user then use Session.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.