So either you use an async SQL library or you opti...
# ktor
m
So either you use an async SQL library or you optimize the heck out of the synchronous code as well as the SQL queries and server(s), so that they are not a bottleneck. That probably includes throwing the synchronous calls into their own big thread-pool with async access from the coroutines as well as extensive caching.