[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Performance benchmarks

From: Philip Martin <philip.martin_at_wandisco.com>
Date: Sun, 27 Mar 2011 19:18:00 +0100

Mark Phippard <markphip_at_gmail.com> writes:

> * Delete and move are slower than I would have expected.

These are slow because delete has no recursive optimisation.
Non-recursive delete of a node with all children already deleted is the
most basic operation, and recursive delete can be implemented in terms
of this operation. That's what we have, since we only need to implement
the one fundamental operation. However it would be more efficient to
implement some recursive delete optimisations.

-- 
Philip
Received on 2011-03-27 20:18:36 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.