14 Jun
2001
14 Jun
'01
8:02 p.m.
On Thu, 14 Jun 2001, Dirksen wrote:
Hi,
I have a folder with a property. Different people visiting this folder will read/write this property. When there's many concurrent visitors, is Zope able to make sure the read/write request is in the first-in-first-serve order?
Zope will handle the concurrency with no problem. The only problem you may have is if lots of users write to the property at the same time. Then you might get a ConflictError. See: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/zope-devel/DevGuide/Persisten... for more information on conflicts. It won't be a problem as long as you don't hammer the property with writes. -Michel