Y
Hacker News
new
|
ask
|
show
|
jobs
by
ode
4018 days ago
How does concurrency in OCaml compare to Go, Clojure, Rust, etc?
Thanks
2 comments
mercurial
4018 days ago
Concurrency is not built-in, you can get monadic concurrency from libraries (either lwt or Async). There is no parallelism support yet, but multicore support should be there by the end of the year.
link
steveklabnik
4018 days ago
You might be interested in this thread:
https://news.ycombinator.com/item?id=9582980
link