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

Re: svn commit: r956593 - /subversion/trunk/subversion/libsvn_delta/text_delta.c

From: Blair Zajac <blair_at_orcaware.com>
Date: Mon, 21 Jun 2010 11:18:49 -0400

On Jun 21, 2010, at 9:56 AM, julianfoad_at_apache.org wrote:

> Author: julianfoad
> Date: Mon Jun 21 13:56:30 2010
> New Revision: 956593
>
> URL: http://svn.apache.org/viewvc?rev=956593&view=rev
> Log:
> Optimize the copies performed by svn_txdelta_apply_instructions().
>
> svn_txdelta_apply_instructions() is relatively slow for long
> instruction
> sequences copying small pieces of data. This is particularly
> visible in
> "format 2" FSFS repositories.
>
> Two kinds of copy are involved. For simple copies, the system's
> memcpy()
> is used, which is fast for long lengths; this patch bypasses it for
> very
> short lengths. For intentionally overlapping copies, a custom loop
> is used,
> which was already fast for very short lengths; this patch adds a
> code path
> that is fast for longer lengths.

Hi Julian,

Does this turn out to have a measurable performance improvement? I
would guess svn is limited by IO speeds with fsync(), not memory copies.

Not that I don't appreciate performance improvements, running a
backend that gets over 2 commits per second :), I'm just curious.

Regards,
Blair
Received on 2010-06-21 17:20:59 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.