|
|
|
|
|
by anton_gogolev
4159 days ago
|
|
The-other-good-DVCS-that-everyone-almost-forgot-about, Mercurial, has exactly two solutions to the problem of overly large repos which, I presume, contain a lot of BLOBs. First is Streaming Clones[1], whereby Mercurial server just takes all the files from the repository and transmits them over the transport connection, significantly decreasing TTFB. The second is Largefiles extension[2], which turns Mercurial into more of a CVCS, but allows for efficient storage and retrieval of large binary files. [1]: https://hglabhq.com/blog/2014/6/20/working-with-mercurial-ov...
[2]: http://mercurial.selenic.com/wiki/LargefilesExtension |
|