Re: Proposal - option to store unzipped office documents on server side.
From: Philip Martin <philip_at_codematters.co.uk>
Date: Fri, 04 Aug 2017 13:12:14 +0100
Paul Hammant <paul_at_hammant.org> writes:
> Git doesn't store deltas, and uses a DEFLATE algorithm for
I don't know about git but Subversion does quite a good job on some
$ svn export http://svn.apache.org/repos/asf/subversion/tags/1.9.5
How big are the tarballs?
$ ls -lh foo*
How big in the repository?
$ ls -lh repo/db/revs/0/[12]
Saving about 2M. But we can do better if we do compression knowing that
$ tar cf foo1.tar 1.9.5
The resulting tarballs are little bigger:
-rw-r--r-- 1 pm pm 16M Aug 4 13:05 foo1.tar.gz
but Subversion can do better deltification:
-r--r--r-- 1 pm pm 16M Aug 4 13:05 repo/db/revs/0/1
We have stored two 15MB compressed tarballs in a 21MB repository.
-- PhilipReceived on 2017-08-04 14:12:24 CEST |
This is an archived mail posted to the Subversion Dev mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.