On Tue, 17 Dec 2002 08:08, you wrote: > So far it appears that for our purposes, multiple Turbine instances > work fine with a central database. but I just wanted to make sure > that this wasn't a known "bad thing" to do.
Hi Kevin, If you have multiple JVMs running Turbine and accessing the same database, your database must support transactions for the IDBroker to function correctly. >From the API docs: ----------- When the ID_TABLE must be updated we must ensure that IDBroker objects running in different JVMs do not overwrite each other. This is accomplished using using the transactional support occuring in some databases. Using this class with a database that does not support transactions should be limited to a single JVM. ----------- Regards, -- Rodney -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
