I am creating multisites platform. Anybody can make simple site, with my platform. I plan to use django multidb support. One db for one site. And i need to change db settings depending on request.get_host(). I think that i's not good idea. Prompt other decisions? How it is realised on various designers of sites?

link|improve this question
feedback

2 Answers

You might want to reconsider using a separate db for reach site. In reviewing the multi-db source, it looks like you'll run into a few scalability issues, depending on how many sites you want to support:

Currently all the databases are set up in settings.py. This could cause a few issues:

  • Each new site would require reloading Django.
  • settings.py could get large.

A better approach might to use a single DB and associate the site/account with each record as needed.

link|improve this answer
I don't know how many sites will be created. – Alexandr Mar 29 '10 at 18:18
If it's low, and you're doing it manually, you're probably OK; otherwise, I would use a different strategy. – Chip Tol Mar 29 '10 at 18:48
feedback

You can set up one site for each "site", with it's own settings file, listening to it's own socket, using the same codebase. I'm doing that and I can easily support more than 30 concurrent sites on a middle-size server. Maintainability of configurations and startup scripts is the only issue.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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