vote up 2 vote down star

The default asp.net membership provider uses a .mdf sql server database file in the app_code database. How scalable is this in terms of calling a flat file database instead of running it in a standard sql environment? Is this recommended only for small/medium traffic sites? Thanks.

flag

80% accept rate

2 Answers

vote up 3 vote down check

It's a reasonable trade off for any site that can run on one server. It's fairly reasonable for small to medium traffic sites.

When you grow to a point of a web farm, then you'll be better off with a separate server. Also, depending on how database dependent your application is, you may find better performance handing off SQL queries to a totally different server/processor to handle the database side.

link|flag
vote up 0 vote down

I wouldn't recommend this for anything but a "learning" project.

For any real application, regardless of size, you don't know what type of "next feature" you will add. You want to have a real independent database in which you can delegate functionality to, in which you can set jobs to run independently, sit on a different HD, maybe splitting it into a different VM?

You can use SQL Express and still be "free', and it is better to do this seperation before the site grows and the DB is harder to move.

link|flag

Your Answer

Get an OpenID
or

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