Looking at `NettyApplicationEngine`, why does ktor...
# ktor
r
Looking at
NettyApplicationEngine
, why does ktor run application code in a threadpool of its own?
c
This is required to safely run any code that can potentially block
r
oh, so this is the only reason, nothing with scaling the i/o threads vs user threads? does the context switch to a new set of threads cost much?