Hello guys. I’m trying to understand `workerGroupS...
# ktor
a
Hello guys. I’m trying to understand
workerGroupSize
and
callGroupSize
from
io.ktor.server.engine.ApplicationEngine.Configuration
but unable to make sense of it. Can someone dumb it down for me?
Copy code
/**
         * Specifies size of the event group for processing connections, parsing messages and doing engine's internal work
         */
        public var workerGroupSize: Int = parallelism / 2 + 1

        /**
         * Specifies size of the event group for running application code
         */
        public var callGroupSize: Int = parallelism