From 4df638f5cef389a080428bea3ca723639fc40ea2 Mon Sep 17 00:00:00 2001 From: MSP-Greg Date: Tue, 15 Oct 2024 08:28:37 -0500 Subject: [PATCH] configuration.rb - set `max_fast_inline` to 50 --- lib/puma/configuration.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/puma/configuration.rb b/lib/puma/configuration.rb index 085ee7da..b65e2154 100644 --- a/lib/puma/configuration.rb +++ b/lib/puma/configuration.rb @@ -145,7 +145,7 @@ class Configuration # we amortize the cost of going back to the reactor for a well behaved # but very "greedy" client across 10 requests. This prevents a not # well behaved client from monopolizing the thread forever. - max_fast_inline: 10, + max_fast_inline: 50, max_threads: Puma.mri? ? 5 : 16, min_threads: 0, mode: :http,