From: Wolfgang M. <wol...@ex...> - 2011-08-10 11:00:54
|
> So what did you make of my proposals (August 8th) for changes to the > code, and can you comment on why we release the internal READ lock but > tell WebDAV that its locked - that seems dangerous to me, but there > are probably some webdav specific reasons? The internal locks should *never* be held across invocations. They have to be released before a transaction commits or you'll block other threads. The WebDAV (or user level) locks are for applications to implement their own locking scheme. It is up to the application or interface to enforce those. Wolfgang |