publish: Use a larger zlib buffer for compression with '--cache'.
* guix/scripts/publish.scm (bake-narinfo+nar): Pass #:buffer-size to 'call-with-gzip-output-port'.
This commit is contained in:
parent
7020a6ab8b
commit
e723178a10
|
@ -455,7 +455,8 @@ requested using POOL."
|
||||||
(call-with-gzip-output-port (open-output-file (string-append nar ".tmp"))
|
(call-with-gzip-output-port (open-output-file (string-append nar ".tmp"))
|
||||||
(lambda (port)
|
(lambda (port)
|
||||||
(write-file item port))
|
(write-file item port))
|
||||||
#:level (compression-level compression))
|
#:level (compression-level compression)
|
||||||
|
#:buffer-size (* 128 1024))
|
||||||
(rename-file (string-append nar ".tmp") nar))
|
(rename-file (string-append nar ".tmp") nar))
|
||||||
('none
|
('none
|
||||||
;; When compression is disabled, we retrieve files directly from the
|
;; When compression is disabled, we retrieve files directly from the
|
||||||
|
|
Loading…
Reference in New Issue