vote up 0 vote down star

I have an ASP.NET 3.0 application that works fine on one server. It uses application variables to check if a user has checked out a file and locks it for all other users. When I put the application on the load balanced servers, the application didnt work as expected since it multiple users got sent to multiple servers and each user could check out the requred file.

The main point is that is there any way I can share the application variables in my application even though it is distributed on multiple servers. Ot is there a better way to get a global variable?

flag

1  
this seems like more of a stackoverflow question to me... – freiheit Oct 27 at 18:22
I don't have access to do so, but this is probably more of a stackoverflow question as the solutions are more likely to be within your application and .Net than server infrastructure wise. – ManiacZX Oct 27 at 18:23

migrated from serverfault.com

1 Answer

vote up 1 vote down check

If you are splitting the web servers but have a common database server, then writing that information to the database is an option.

You can create a name/value table to store the variables that you commonly are storing in the application.

link|flag
Yup, moving it the database is generally the easy solution that I have seen. I believe J Spolsky recommended storing sessions in the DB on one of the stackoverflow podcasts. – Kyle Brandt Oct 27 at 18:42

Your Answer

Get an OpenID
or

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