[Zope] Re: threading in zope (ignore previous post)
Toby Dickenson
tdickenson@geminidataloggers.com
Mon, 8 Jul 2002 10:59:30 +0100
On Monday 08 Jul 2002 9:19 am, Daniel Mahler wrote:
> I found that the 'sequential' behaviour I was
> seeing from my product is an artifact of my browser.
maybe, buts it is also a consquence of Zopes threading model.
Zope uses threads, so two writes can run concurrently. If two concurrent=20
transactions modify the same object then the second one gets aborted with=
a=20
ConflictError. ZPublisher will retry a ConflictError up to 3 times.