Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Investigate possibility to avoid kotlinx.coroutines dependency #2936

Open
qwwdfsad opened this issue Mar 21, 2023 · 1 comment
Open

Investigate possibility to avoid kotlinx.coroutines dependency #2936

qwwdfsad opened this issue Mar 21, 2023 · 1 comment
Labels
tech-debt A technical issue that is not observable by the users, but improves maintainers quality of life

Comments

@qwwdfsad
Copy link
Contributor

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 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

@qwwdfsad 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
@aSemy
Copy link
Contributor

aSemy commented May 20, 2023

I have experimented with this locally, and anecdotally I find it improves performance in the Dokkatoo tests (which use the Gradle Worker API).

I prototyped it by find/replacing the coroutines functions with the run {} scope function

  • launch {run {
  • async {run {
  • coroutineScope {run {
  • etc...

and fixing any resulting issues.

I could share my work in a PR if it would help?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
tech-debt A technical issue that is not observable by the users, but improves maintainers quality of life
Projects
None yet
Development

No branches or pull requests

2 participants