本文介绍了SVN是否压缩二进制内容?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道SVN是否在提交期间实际压缩服务器上的二进制内容?我知道二进制存储diffgram比较和版本,但想知道是否一个新的文件将占用服务器上的相同卷,因为它在客户端pc?
I was wondering whether SVN actually compresses the binary content on the server during Commits? I know that the binary store the diffgrams for comparison and versioning but wondered whether a new file commited would occupy the same volume on the server as it does on the client pc?
推荐答案
我相信。
从这里开始:
* libz (REQUIRED for client and server)
Subversion uses zlib for compressing binary differences.
These diff streams are used everywhere -- over the network,
in the repository, and in the client's working copy.
这篇关于SVN是否压缩二进制内容?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!