English 中文(简体)
升级一个非常老旧的 SVN 仓库
原标题:Upgrading a VERY old SVN Repository

目前我们有一个 SVN 服务器, 使用 VisionSVN 服务器作为前端服务器, 大多数客户正在同时运行 VisionSVN 视觉演播室扩展和 TortoiseSVN 。

目前我们拥有的存储库将追溯到一段时间... 它是由我的Guider, around 2006 (!) <(!) 创建的,而 format 文件则说它是版本1... 它似乎是一个1.5前存储库...

我们正在移动服务器,一个正在升级的服务器是 SVN 框。上次升级时,我们在存储器文件夹上做了一个 svnadmin hotopy ,在新机器上安装了一台新安装的VavisSVN 服务器,复制了文件,向正确方向指出了一些东西,而且,它起作用了...

有了这个新的升级,我想知道我们能对存储库做些什么来赋予它一些新的生命? 速度提高, 空间减少( 整个存储库目前重量约为 13Gb), 并且性能提高。 我知道我说的是性能/ 速度的两次, 但是考虑到我们升级的旧机器是32位P4, 大约4Gb 公羊( 3.6Gb 可用), 新的盒子是四角核心Xeon, 配有32Gb 内存, 我们拥有与我们原先相当的速度, 从升级中显示某种, 速度明智的...

有什么想法吗?

最佳回答

上Subversion.apache.org/docs/release-notes/1.6.html#repos-upgrations//a。

Apache Subversion 1. 1.7 使用与 Subversion 1. 1.6 相同的仓库格式,因此该条目也适用于 SVN 1. 7 。

升级存储库格式有两个选项 :

  • 您可以在存储库上执行 < a href=>" http://subversion.apache.org/faq.html#dumpload" rel=“nofollow”\\ strong > dump /load cycle 。 这可能导致存储库规模较小,总体性能更好,

  • You can upgrade repositories format with a command-line: svnadmin upgrade <path-to-repository>. Upgrading to the current repository format can result into a smaller repository size.

问题回答

暂无回答




相关问题
Tracking Versions, Builds, Revisions, with TortiseSVN

I am the sole developer on a project and have been using tortoiseSVN for quite a while. Now Id like to start getting version information working correctly in the project I.E. show Major Version, Minor ...

Tips on upgrading CVS to git/hg?

We still use CVS, I use git and hg for my personal use though I m still a novice at both, but I realize they re much more modern and better, faster, distributed, etc. It s just everyone is so ...

How to handle different csproj [closed]

I am working in a team of five. We are working on a C# application with five csprojects. The problem is that for each csproject, each of my colleagues has their own ideas on how to reference a DLL; ...

Changing username in SVN+SSH URI on the fly in working copy

I am using SVN+SSH to check out a working copy of repository from an SVN server on which all developers are members of a developer group and have full read/write permissions on the repository ...

How to search for file in subversion server?

Is there a way to search for a file in a subversion repository? Something similar to Unix find command, with which I can find the location of a file in a repository. I know there is svn list, but ...

热门标签