Ask HN: Besides Go, what languages are muti-threading "in background"?
1–10 of 18 posts
Re: Ask HN: Besides Go, what languages are muti-threading "in background"?
#2Re: Ask HN: Besides Go, what languages are muti-threading "in background"?
#3Re: Ask HN: Besides Go, what languages are muti-threading "in background"?
#4Almost any language supports spawning a new thread.
Re: Ask HN: Besides Go, what languages are muti-threading "in background"?
#5I think you're mixing up async execution and multithreading. They're quite different concepts, although you can offload an awaited work on another thread. Almost any language supports spawning a new thread.
Re: Ask HN: Besides Go, what languages are muti-threading "in background"?
#6Re: Ask HN: Besides Go, what languages are muti-threading "in background"?
#7Re: Ask HN: Besides Go, what languages are muti-threading "in background"?
#8Earlier quoted context omitted.
What does that mean?
I don't think its difficult to understand. Look at the other two answers.
Re: Ask HN: Besides Go, what languages are muti-threading "in background"?
#9Earlier quoted context omitted.
I don't think its difficult to understand. Look at the other two answers.
No, it really is. I've got experience with multiple languages / multithreading approaches and could argue it means 3 different things. I don't know what others think the question is about.
Re: Ask HN: Besides Go, what languages are muti-threading "in background"?
#10Java 21+ (virtual threads).
What virtual threads bring to the table is that now they are both officially supported, with APIs for both cases, while previously it was an implementation detail of each JVM how threading was actually done.