Kotlin coroutine
Hi do you know how do I proceed to have my coroutines run on different threads? I have tried this to speed up:
but it tourned out it was less fast than concurrent only?
3 Replies
⌛
This post has been reserved for your question.
Hey @Pseudow! Please useTIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here./close
or theClose Post
button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.
💤
Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived.
If your question was not answered yet, feel free to re-open this post or create a new one.
In case your post is not getting any attention, you can try to use /help ping
.
Warning: abusing this will result in moderative actions taken against you.
I believe the purpose of kotlin coroutines is not to make your application faster, but so it would make your application responsive and prevent blockages.
try increasing the number of threads in the pool or, if you're in Java 22, you can use Project Loom or lightweight threads.
💤
Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived.
If your question was not answered yet, feel free to re-open this post or create a new one.
In case your post is not getting any attention, you can try to use /help ping
.
Warning: abusing this will result in moderative actions taken against you.