Marc Knaup
10/01/2018, 9:37 PMobjectmapper.writeValueAsString(…)
is called within a suspend function. It could take a while for a complex object to be serialized to a string. As far as I understand the coroutine context would be blocked until this is done. Doesn't it cause a bottleneck or even temporarily block other requests from being processed if a ktor coroutine is blocked by a synchronous call?