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

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.
You might be interested in this thread: https://news.ycombinator.com/item?id=9582980