Skip to main content

Questions tagged [concurrency]

Filter by
Sorted by
Tagged with
2 votes
2 answers
399 views

I'm working on a general-purpose language, and right now I'm working on its threading library. So far, I've worked out how to realize idiomatic critical sections - mutex objects that wraps values for ...
DannyNiu's user avatar
  • 467
1 vote
1 answer
352 views

I find it interesting to have stackless asynchronous I/O, e.g. when using an HTTP-client in the code, the call-stack get emptied before handling next "event" (could be unrelated or the ...
Jonas's user avatar
  • 715
8 votes
1 answer
722 views

BEAM (Erlang virtual machine) is known for having the ability to run huge amounts of concurrent processes, and very large amounts of messages between those processes. What runtime strategies does it ...
blueberry's user avatar
  • 2,607