10,000個のXMLファイルがあるとします。今、私は友人にそれらを送信したいとします。それらを送信する前に、それらを圧縮したいと思います。
方法1:圧縮しないでください
結果:
Resulting Size: 62 MB
Percent of initial size: 100%
方法2:すべてのファイルを圧縮し、10,000個のxmlファイルを送信する
コマンド:
for x in $(ls -1) ; do echo $x ; zip "$x.zip" $x ; done
結果:
Resulting Size: 13 MB
Percent of initial size: 20%
方法3:10,000個のxmlファイルを含む単一のzipを作成する
コマンド:
zip all.zip $(ls -1)
結果:
Resulting Size: 12 MB
Percent of initial size: 19%
方法4:ファイルを1つのファイルに連結して圧縮する
コマンド:
cat *.xml > oneFile.txt ; zip oneFile.zip oneFile.txt
結果:
Resulting Size: 2 MB
Percent of initial size: 3%
質問:
- 単一のファイルを圧縮するだけで、こんなに劇的に良い結果が得られるのはなぜですか?
- 方法2よりも方法3を使用すると劇的に良い結果が得られると期待していましたが、そうではありません。どうして?
- この動作は固有
zip
ですか?使用してみた場合gzip
、異なる結果が得られますか?
追加情報:
$ zip --version
Copyright (c) 1990-2008 Info-ZIP - Type 'zip "-L"' for software license.
This is Zip 3.0 (July 5th 2008), by Info-ZIP.
Currently maintained by E. Gordon. Please send bug reports to
the authors using the web page at www.info-zip.org; see README for details.
Latest sources and executables are at ftp://ftp.info-zip.org/pub/infozip,
as of above date; see http://www.info-zip.org/ for other sites.
Compiled with gcc 4.4.4 20100525 (Red Hat 4.4.4-5) for Unix (Linux ELF) on Nov 11 2010.
Zip special compilation options:
USE_EF_UT_TIME (store Universal Time)
SYMLINK_SUPPORT (symbolic links supported)
LARGE_FILE_SUPPORT (can read and write large files on file system)
ZIP64_SUPPORT (use Zip64 to store large files in archives)
UNICODE_SUPPORT (store and read UTF-8 Unicode paths)
STORE_UNIX_UIDs_GIDs (store UID/GID sizes/values using new extra field)
UIDGID_NOT_16BIT (old Unix 16-bit UID/GID extra field not used)
[encryption, version 2.91 of 05 Jan 2007] (modified for Zip 3)
編集:メタデータ
1つの答えは、その違いはzipに保存されているシステムメタデータであることを示唆しています。これが当てはまるとは思いません。テストするために、次のことを行いました。
for x in $(seq 10000) ; do touch $x ; done
zip allZip $(ls -1)
結果のzipは1.4MBです。これは、説明されていないスペースがまだ約10 MBあることを意味します。
$(ls -1)
、単に使用し*
ますfor x in *
。zip all.zip *
.tar.gz
ディレクトリ全体を圧縮するのとは対照的に、人々がそうするのはこの現象です。