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

Re: various questions related to repo size

From: <philip_at_codematters.co.uk>
Date: 2003-01-30 17:01:36 CET

Ben Collins-Sussman sussman@collab.net writes:

 If this is what you're seeing, then something is wrong.
 
 All working copies should be the same size.

That's what I thought as well, but it turns out that Jani is correct.

$ svnadmin create repo
$ svn co file://`pwd`/repo wc1
$ svn mkdir wc1/foo
$ echo bar wc1/foo/bar
$ svn add wc1/foo/bar
$ svn ci wc1
$ svn up wc1
$ svn co file://`pwd`/repo wc2
$ diff -r --brief wc1 wc2
Files wc1/foo/.svn/entries and wc2/foo/.svn/entries differ
Only in wc2/foo/.svn/prop-base: bar.svn-base
Only in wc2/foo/.svn/props: bar.svn-work

The second working copy has props files that contain END, i.e. no
properties, but the first working copy doesn't have them. It's only a
temporary condition, the missing files will get created as the first
working copy receives updates, or if you sets some properties.

There is a further difference if you use ra_dav. In that case the
working copy that does the commit will not have activity-urls in the
dir-wcprops, while a checkout/update working copy will. Once again it
is only a temporary condition.

It is possible that we could improve working copy performance by
eliminating the props files that just contain END. I don't know
whether it would make a noticeable difference.

-- 
Philip Martin
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Oct 14 02:25:24 2006

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.