How does the concurrency side of Ktor Server V2 (t...
# ktor
n
How does the concurrency side of Ktor Server V2 (the Native version) work? Which C library does the Native version of Ktor Server use to provide the Web Engine (CIO)?
h
There is no c library, CIO is a handcrafted Kotlin implementation.
a
The concurrency is provided by the kotlinx.coroutines library. The native server uses sockets through POSIX.
👍 1