linux – Subversion – txn-protorevs的目的是什么

我有一个Subversion服务器和一个Subversion存储库,我在db目录下有这个目录:
txn-protorevs

其中包含以下文件

119M    1-4.rev
0       1-4.rev-lock

SVN存储库中此目录的用途是什么?

解决方法

如果你想了解db目录,你应该仔细阅读 source code使用哪个SVN来实现FSFS,它有一些注释,详细说明了这些部分是如何组合在一起的.简而言之,这是文件的内容
txn-protorevs/      Subdirectory containing transaction proto-revision files
    <txnid>.rev       Proto-revision file for transaction <txnid>
    <txnid>.rev-lock  Write lock for proto-rev file

这是原始修订文件的作用

The prototype rev file is used to store the text representations as they are received from the client. To ensure that only one client is writing to the file at a given time,the “rev-lock” file is locked for the duration of each write.

相关文章

/etc/sysctl.conf这个目录主要是配置一些系统信息,/etc/sys...
1.作用 useradd或adduser命令用来建立用户帐号和创建用户的起...
它们都是多模式编辑器,不同的是vim 是vi的升级版本,它不仅...
不管是我们在安装软件还是监测软件的使用性能,我们都要随时...
装好Tomcat7后,发现除了本机能访问外界访问不了,岂有此理。...
修改防火墙配置需要修改 /etc/sysconfig/iptables 这个文件,...