From 84880a9091d4551bac4073eb23c3f78298296fcd Mon Sep 17 00:00:00 2001 From: Reese Norris Date: Tue, 22 Oct 2024 12:46:06 -0700 Subject: [PATCH] reduce write flush interval --- client/connection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/connection.go b/client/connection.go index 865b019..f088034 100644 --- a/client/connection.go +++ b/client/connection.go @@ -20,7 +20,7 @@ import ( ) const maxFSDPacketSize = 1536 -const writeFlushInterval = 200 * time.Millisecond +const writeFlushInterval = 50 * time.Millisecond var AlwaysImmediate = false