1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-24 01:51:51 +02:00

publish: Improve performance by increasing buffer size.

* guix/scripts/publish.scm (http-write): Increase socket send buffer.
This commit is contained in:
Ricardo Wurmus
2020-05-19 23:14:30 +02:00
parent f523eaba7b
commit 5e3d169945
+1
View File
@@ -851,6 +851,7 @@ blocking."
size)
client))
(output (response-port response)))
(setsockopt client SOL_SOCKET SO_SNDBUF (* 128 1024))
(if (file-port? output)
(sendfile output input size)
(dump-port input output))