>This makes the assumption (currently inherent in Django) that you >will only use one database connection. This can cause problems if you >need to scale your application.
Actually it only makes the assumption that it is a common case that you only manage one connection. There is nothing that would prevent using multiple connections - it's just about making the common case simple, but not block the more complicated cases. With a middleware you can allways decide to _not_ use it. :-) bye, Georg
