Concurrency

From HaskellWiki
Jump to navigation Jump to search

Note: you may want to read Parallelism vs. Concurrency, as the terms have historically been conflated.

This page contains notes and information about how to write concurrent programs in Haskell.

For practicality, the content is GHC-centric at the moment, although this may change as Haskell evolves.

Overview

GHC provides multi-scale support for concurrent programming, from very fine-grained, small tasks to coarse-grained explicit threads and locks, along with other models of concurrent programming including actors, CSP-style concurrency, and Intel Concurrent Collections. Synchronization between tasks is possible via messages, regular Haskell variables, MVar-based shared state or transactional memory.

Getting started

  1. Manage simultaneous I/O actions (eg. multiple connections on a web server)
    Start with Concurrent Haskell (forkIO, MVar)
    Learn more about concurrency, then try using network protocol libraries like HTTP or zeromq.
  2. Work with clusters or do distributed programming
    Look out for ongoing research into distributed Haskell.

Digging deeper

  • Software Transactional Memory (STM) is a newer way to coordinate concurrent threads. There's a separate Wiki page devoted to STM.
STM was added to GHC 6.4, and is described in the paper Composable memory transactions. The paper Lock-free data structures using STM in Haskell gives further examples of concurrent programming using STM.

GHC concurrency specifics

You get access to concurrency operations by importing the library Control.Concurrent.

Community

Tools

  • ThreadScope - concurrent programs not working as expected? Use the ThreadScope debugger and watch the fireworks.
  • Various libraries, including those for concurrency.

Documentation

Alternative approaches

  • CHP: CSP-style concurrency for Haskell.

See also