Django works very well in a multi-server two-tiered environment. (Web + DB) I'm pretty sure that this was one of the goals of Adrian, et al. as they developed Django.
As long as your database cluster can handle the traffic, you can keep adding Django webservers with an outward-facing load-balancing scheme. The web servers don't need to talk to each other, but make sure your database is using transactions and the proper isolation level for your needs. I don't know of any tutorial for setting up a Django cluster, but it's really just "add more servers" and "synchronize the applications they're running". There are likely tutorials for setting up generic web server clusters, and Django shouldn't be much different. I use subversion to keep all of my servers running the same code, but other options are certainly possible. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

