Would it make sense to add coroutines support to a...
# coroutines
m
Would it make sense to add coroutines support to a (streaming) JSON library? (+ wouldn’t turning all reads/writes into suspending functions slow down things a lot?)
e
It would not make a lot of sense from performance standpoint. It is much better to read/write the whole JSON chunk of data, then deserialize/serialize it
m
That’s what I thought, thank you for the feedback!