Hello, does anyone know how to limit open connecti...
# ktor
l
Hello, does anyone know how to limit open connections with ktor-netty? currently I have a rate limiter but on route level but i’m still opening new connections for every new incoming request
a
It isn't possible to directly limit open connections but you can try to tweak requestQueueLimit and runningLimit parameters.
l
Hello @Aleksei Tirman [JB], yes, i tried with these but I didn’t have a noticeable difference