https://kotlinlang.org logo
#exposed
Title
# exposed
d

dave08

01/26/2018, 10:24 AM
Also, coroutine support could still be for non async using a thread pool, at least until there would be an async solution... otherwise anyone using this with Ktor will have to surround everything with
async { }.await()
and make their own thread pools... I have a coroutine utils package in most of my projects for such things that I keep having to copy... it would be great if it could be integrated into the lib...
🤔 1
t

tapac

01/26/2018, 1:14 PM
I'll check how good (if any) databases and jdbc supports concurrent queries execution within same connection/transaction. Otherwise every query executed in pool should use it's own transaction, whitch not allways good approach.
👍🏼 1
d

dave08

01/28/2018, 2:43 PM
Did you have a chance to look into this? I'm pretty interested in using this lib, I'm just not sure how with this question raised... 😢
2 Views