I think it's possible to scale postgresql to rather large situations. See this for example: http://www.postgresql.org/about/news.468.html ... 22 million INSERTS and UPDATES per day is ok for me...
The only "missing" feature is multi-master replication on Postgres default install but you can always use PGCluster or some other projects like. With the recently added two-phase commit it's only a matter of time to see some sort of multi-master functionality right inside the base postgresql. But even in a single-master to multiple-slaves you can reach a rather high performance. You give the "SELECTS" which are the most time consuming to the slaves while using the MASTER for data modification. Tunning Postgresql can be challenging sometimes but the performance can be astonishing. Regards, Pedro _______________________________________________ Tinyerp-users mailing list http://tiny.be/mailman/listinfo/tinyerp-users
