How difficult is Haskell multi-threading?

Posted by mvid on Stack Overflow See other posts from Stack Overflow or by mvid
Published on 2010-06-10T04:38:03Z Indexed on 2010/06/10 4:42 UTC
Read the original article Hit count: 275

Filed under:
|
|

I have heard that in Haskell, creating a multi-threaded application is as easy as taking a standard Haskell application and compiling it with the -threaded flag. Other cases, however, have described the use of a par command within the actual source code.

What is the state of Haskell multi-threading? How easy is it to introduce into programs? Is there a good multi-threading tutorial that goes over these different commands and their uses?

© Stack Overflow or respective owner

Related posts about multithreading

Related posts about haskell