First of all, Thank you JetBrains and Community
I intend to use Kotlin as replacement for Go lang and specially its concurrency features like coroutines and taking advantages of Java based community libraries for low latency web services and big data computation pipelines.
What are the best practices if any to achieve optimum performance ?
Also, can anyone suggest a list of async libraries to make a coroutine based stack for following areas.
Web Framework - Is ktor good enough ?
File IO
http/tcp client
Jdbc driver
NoSql DB Drivers (MongoDB, Cassandra, Elastic Search, Kafka)
Is it okay to use async java library alternatives if Kotlin does not have one ? How much it can affect the resource utilization especially if you using async db drivers with their own thread pools (not coroutines) ?