解压时尝试静音模式-q。如果存档中有太多文件,这将大大减少时间,因为unzip将名称写入stdout。 man unzip:
-q perform operations quietly (-qq = even quieter). Ordinarily
unzip prints the names of the files it's extracting or testing,
the extraction methods, any file or zipfile comments that may be
stored in the archive, and possibly a summary when finished with
each archive. The -q[q] options suppress the printing of some
or all of these messages.
3条答案
按热度按时间kmpatx3s1#
解压时尝试静音模式
-q
。如果存档中有太多文件,这将大大减少时间,因为unzip将名称写入stdout。man unzip
:cunj1qz12#
如果磁盘空间不是问题,那么就不要压缩。那你也永远不需要减压了。
如果您有多个内核,可以尝试pigz来加快速度。它是gzip的一个并行实现,它将特别加快压缩速度。
我不明白为什么你的解压缩比你的压缩慢。它应该快三到十倍。你能提供你正在做的事情的实际代码吗?一定有什么问题。
顺便说一句,你的术语不正确。压缩和解压缩是指.zip格式,而不是.gz格式。你只需要说你压缩和解压缩gzip格式。
efzxgjgh3#
使用并行处理!根据可用的CPU数量,可以使用等于CPU数量的系数来加快进程。您可以使用bash脚本来完成此操作。我个人更喜欢使用Python脚本。我使用concurrent.futures中的ProcessPoolExecutor模块。