Difference between revisions of "Parallel"

From HaskellWiki
Jump to navigation Jump to search
(→‎Documentation: Added link to "Parallel and Concurrent Programming in Haskell")
 
Line 40: Line 40:
 
* [[Parallel/Reading|Parallel Haskell reading]]
 
* [[Parallel/Reading|Parallel Haskell reading]]
 
* [[Parallel/Research|Current research]]
 
* [[Parallel/Research|Current research]]
  +
* [http://chimera.labs.oreilly.com/books/1230000000929/index.html Parallel and Concurrent Programming in Haskell] (online book)
   
 
[[Category:Parallel]]
 
[[Category:Parallel]]

Latest revision as of 15:17, 6 September 2013


Parallelism and Concurrency in Haskell

Haskell supports both pure parallelism and explicit concurrency. How would you like to begin?

  1. Speed up your code by making it run on multicore:
    Start with Control.Parallel (par, pseq) and refine with Strategies
    Find out more about parallelism basics
  2. Manage simultaneous IO actions (eg. multiple connections on a web server)
    Start with Concurrent Haskell (forkIO, MVar)
    Find out more about concurrency basics
  3. Work with clusters or do distributed programming
    Learn about concurrency first, then try using network protocol libraries like HTTP or zeromq.
    Meanwhile look out for ongoing research into distributed Haskell.

Community

News

Tools

Documentation