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

Re: Subversion Performance Benchmark

From: <cmpilato_at_collab.net>
Date: 2002-09-24 19:17:29 CEST

Daniel Berlin <dberlin@dberlin.org> writes:

> But, given what you say, and that vdelta *was* the biggest time user,
> one of the following must hold:
>
> 1. You are wrong, and we are supposed to be storing everything
> non-fulltext (deltas against itself)

Highly unlikely. :-)

> 2. Subversion is buggy, and it is storing non-fulltext when it
> shouldn't be

Also not the case. Do an initial import of something, and use db_dump
to examine the strings table. On my machine, there is nary a single
chunk of svndiff data.

> 3. Subversion is buggy, and it is doing deltas and throwing them away.

*Ding!* Subversion is using svndiff to *transmit* the text. Those diff
packages usually break down to:

   'S'
   'V'
   'N'
   \0
   <flag that means 'here comes some new data'>
   <here's the whole file as fulltext>

but the fact remains that we are attempting to svndiff-ify a "delta"
that is effectively an "add" of the entire file.

And the repository is unpacking that stuff and storing the original
fulltext.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Sep 24 19:18:33 2002

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.