You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, Dokka actively depends (and exposes in public API via AsyncSourceToDocumentableTranslator) on kotlinx.coroutines for particular analysis tasks.
Historically, it was done as the natural way to speed up the rendering stage because every declaration (function, property, constant etc.) had its own page, and each page contained navigation data (thus the IO contention).
This no longer holds true, but coroutines are still here.
It contributes non-necessary dependency to the Dokka (whatever isolation mechanism we'll choose, it's still a bunch of classes to load and compile)
It doesn't interfere well with workers' API. Use Gradle Worker API #2903 will bring not only workers but also natural Gradle-level parallelism, meaning that an additional layer of parallelism within individual tasks is likely to slow down the overall execution.
Ideally, we should prototype the solution (note that it couldn't be "coroutines in single-threaded mode", it has to be a complete removal) and measure the potential impact -- e.g. compare execution times of individual tasks on stdlib and kotlinx.coroutines, and decide whether slowdown is acceptable
The text was updated successfully, but these errors were encountered:
qwwdfsad
added
the
tech-debt
A technical issue that is not observable by the users, but improves maintainers quality of life
label
Mar 21, 2023
Currently, Dokka actively depends (and exposes in public API via
AsyncSourceToDocumentableTranslator
) onkotlinx.coroutines
for particular analysis tasks.Historically, it was done as the natural way to speed up the rendering stage because every declaration (function, property, constant etc.) had its own page, and each page contained navigation data (thus the IO contention).
This no longer holds true, but coroutines are still here.
It has multiple downsides:
Ideally, we should prototype the solution (note that it couldn't be "coroutines in single-threaded mode", it has to be a complete removal) and measure the potential impact -- e.g. compare execution times of individual tasks on stdlib and kotlinx.coroutines, and decide whether slowdown is acceptable
The text was updated successfully, but these errors were encountered: