We plan to pay special attention to performance, b...
# ktor
o
We plan to pay special attention to performance, but any bugs have higher priority, i.e. “Works, then Fast”. Otherwise we consider it Feature Complete for 1.0, and any additional features will come in the following releases.
👍 5
e
I was wondering how inline classes like
Result
would improve performance of coroutines. But according to the benchmark it was not big deal. Am I missing something?
g
How Result could improve performance of Coroutines?
d
Avoiding extra boxing.
g
Boxing of what? Coroutines didn't have additional boxing before Result was used for continuation. Performance of coroutines can be improved mostly by optimizing compiler and kotlinx implementation
👌🏼 1