How should I think about this params when I config...
# ktor
g
How should I think about this params when I configure my thread pools?
Copy code
callGroupSize = 16,
workerGroupSize=16,
connectionGroupSize=16
We are running with coroutines down the call chain. Right now the coroutine-scope/context we are using is the one that we receive from ktor in the endpoints (e.g. we are not switching anything with withContext).