mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
ssh: Speed up RPCs by using #:nodelay.
Partly fixes <https://bugs.gnu.org/41702>. * guix/ssh.scm (open-ssh-session): Enable #:nodelay. * m4/guix.m4 (GUIX_CHECK_GUILE_SSH): Add feature check for this new parameter. * doc/guix.texi (Requirements): Adjust. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
6c451e16b7
commit
e8088f0b06
3 changed files with 11 additions and 5 deletions
|
@ -129,7 +129,11 @@ Throw an error on failure."
|
|||
;; We need lightweight compression when
|
||||
;; exchanging full archives.
|
||||
#:compression compression
|
||||
#:compression-level 3)))
|
||||
#:compression-level 3
|
||||
|
||||
;; Speed up RPCs by creating sockets with
|
||||
;; TCP_NODELAY.
|
||||
#:nodelay #t)))
|
||||
|
||||
;; Honor ~/.ssh/config.
|
||||
(session-parse-config! session)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue