Hello what is the consequences of increasing `requ...
# ktor
m
Hello what is the consequences of increasing
requestQueueLimit
? The default is 16. I started to have crashes in my clients
Caused by java.net.ConnectException
and I believe only logical explanation is having so much call in the queue: https://stackoverflow.com/a/6876306/8334146
s
You can configure this yourself
m
Yeap I found out that but my question what are the consequences of increasing it ? I am just not sure how much I should increase like 16 to 20 or 16 to 32 …
a
As far as I understand, this limit determines the max number of running call handlers that process requests in a single socket connection.
👆 1