[Zope-dev] mounting obj to more than one zodb location
Shane Hathaway
shane@digicool.com
Wed, 17 Jan 2001 20:43:14 -0500
ender wrote:
>
> whats happens when you create a persistent object and mount it
> to multiple points on your zodb. do you get a shared ref or multiple
> copies of the object?
It depends on the product you use for mounting, but generally you'll get
a shared database with independent connections. So it will work, but if
you make conflicting changes, the transaction should fail.
This is only an artifact of the current implementation, though.
Shane