This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: Pessimistic locking and temporary nodesbdueck Jan 11, 2006 11:36 PM (in response to belaban)Great change. A quick run on my benchmark seem to show a 15% performance improvement as a result of this for me... of course your mileage may vary. 
 Brian.
- 
        2. Re: Pessimistic locking and temporary nodesbelaban Jan 12, 2006 4:43 AM (in response to belaban)Good ! 
 A further optimization could be to analyze the modifications and/or undo-ops *before* PREPARE/ROLLBACK, and to actually optimize them, e.g.
 PUT(/a, null)
 PUT(/a/b, null)
 PUT(/a/b/c, null)
 could be coerced into
 PUT(/a/b/c)
 Maybe we should create a JIRA issue for this...
 
    