Mark Rowe wrote:
The way mod_python is designed the database connections aren't able to be shared between different Apache processes, and I think that with separate databases per environment a new database connection is required.
That's what I thought
I'm unsure how the general problem could be better solved for mod_python, as the issue seems to be primarily due to the forking nature of Apache.
Well, my schema patch alleviates it by changing the scenario. Instead of having X database connections times Apache processes, you just have one database connection[1] as all the trac instances reside in the same db, just different schemas.
-John [1] per apache process that is. _______________________________________________ Trac mailing list [email protected] http://lists.edgewall.com/mailman/listinfo/trac
