Effect of shared reps on skip deltas
From: Stefan Fuhrmann <stefan.fuhrmann_at_wandisco.com>
Date: Sun, 9 Dec 2012 15:58:38 +0100
Hi there,
Ben asked me on IRC what the worst case scenario for rep
Thinking about it just a little more would have lead me straight
The effect of that are worse than just a performance hit:
r1418963 fixes the problem for most cases.
-- Stefan^2.
[[[
# globals
SVN="./subversion/svn/svn"
# prepare
rm -rf $DATA
${SVNADMIN} create $DATA/repo
# initial data
echo "1" > $DATA/wc/1
# create long chain
PREV="1"
while [ $CURRENT -lt $MAXCOUNT ]; do
cp $DATA/wc/$PREV $DATA/wc/$CURRENT
echo " $CURRENT" >> $DATA/wc/$CURRENT
# maintenance every 100 iterations
PREV=$CURRENT
done
-- Certified & Supported Apache Subversion Downloads: * http://www.wandisco.com/subversion/download *Received on 2012-12-09 15:59:13 CET |
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.