Sharing ASP.NET State databases between multiple apps
Posted
by MikeWyatt
on Stack Overflow
See other posts from Stack Overflow
or by MikeWyatt
Published on 2010-04-07T14:19:42Z
Indexed on
2010/04/07
14:23 UTC
Read the original article
Hit count: 380
Is it better for a collection of ASP.NET web apps to share the same session database, or should each one have its own?
If there is no significant difference, having a single database would be preferable due to easier maintenance.
Background
My team has an assortment of ASP.NET web apps, all written in either Monorail 1.1 or ASP.NET MVC 1.0. Each app currently uses a dedicated session state database. I'm working on adding a new site to that list, and am debating whether I should create another new session database, or just share an existing one with another app.
© Stack Overflow or respective owner