but you can always introduce parallism explicity b...
# coroutines
e
but you can always introduce parallism explicity by launching starting new coroutines with
async
Copy code
async { sumsKey.hincrby(missionId, 0L) } // run one suspending function in a separate coroutine
async { countsKey.hincrby(missionId, 0L) } // in parallel with another one in its own coroutine