vote up 2 vote down star
1

We happily use SVN for SCM at work. Currently I've got our binary assets in the same SVN repository as our code. SVN supports very large files (it transmits them 'streamily' to keep memory usage sane), but it makes everything SLOOWWWWW. I'm ok with slow asset versioning, but slow text operations isn't really acceptable.

Right now assets are under /trunk/release (side by side with a dozen /trunk/projects). Should we keep them in a separate repository? What other optimizations can we do? We have about a GB of assets and growing.

flag

3 Answers

vote up 0 vote down check

IMNSHO its better to keep each project in its own repository, if just for the purpose of keeping the revision numbers separate between them. If project foo hasn't been changed in six months, but project bar is in active development, why should foo's current revision number keep changing. The exception perhaps if the two are tightly couple (like they share a common library), but even then maybe the library should be its own project as well.

Are the binary assets ever changing at all or are they static? If they are static, maybe you don't want them in the repositories at all (just leave a small place holder in there).

link|flag
vote up 1 vote down

You didn't say what optimizations you use already. If you are using bsdfs, see whether switching to fsfs improves performance. If you have a large number of revisions, switch to a more recent version on the server, and convert the repository to the 1.5 format.

link|flag
vote up 0 vote down

I don't have control over the server end, unless you guys think the performance difference of switching backends is going to be an order of magnitude. It seems like it is just copying too much information and sorting through too much data every time I do even a trivial operation. I was hoping we were organizing our files wrong, or using the client wrong.

link|flag
Dustin: You should either answer questions as comments to the question or in original post if they are asking for clarification. The "forum" style is undesirable since these answers don't maintain a temporal order. – Burly Nov 12 '08 at 3:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.