kfogel@collab.net wrote:
>So don't ask me why, I got it into my head to try this:
>
> #!/bin/sh
>
> TYPE=you_must_set_this_to_either_fsfs_or_bdb
> # TYPE=fsfs
> # TYPE=bdb
>
> URL=file://`pwd`/repos/
> rm -rf repos wc
> svnadmin create --fs-type=${TYPE} repos
> svn co ${URL} wc
> svn propset svn:externals "wc ${URL}" wc
> svn ci -m "Set recursive externals property." wc
> rm -rf wc
> echo "Begin infinite loop..."
> svn co ${URL} wc
> # You'll never see this next line.
> echo "End infinite loop."
>
>Here's the interesting thing:
>
>With TYPE=fsfs, it runs forever. But with TYPE=bdb, it stops at a
>certain point -- it seems the database hangs, though I haven't
>investigated deeply. Too many simultaneous accessors? I don't know.
>As I'm working on something else right now, I thought I'd post this.
>
>
Probably ran out of locks.
-- Brane
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Thu Jan 13 01:39:45 2005