Difference between revisions of "Software transactional memory"

From HaskellWiki
Jump to navigation Jump to search
(→‎Projects using STM: Fix broken links.)
m (fixed Happstack link)
(2 intermediate revisions by one other user not shown)
Line 13: Line 13:
 
* [http://www.haskell.org/ghc/docs/latest/html/libraries/base/GHC-Conc.html Documentation for the Control.Concurrent.STM primitives GHC]
 
* [http://www.haskell.org/ghc/docs/latest/html/libraries/base/GHC-Conc.html Documentation for the Control.Concurrent.STM primitives GHC]
   
* [http://www.haskell.org/ghc/docs/latest/html/libraries/stm/Control-Concurrent-STM.html Documentation for the Control.Concurrent.STM module in GHC]
+
* [http://hackage.haskell.org/packages/archive/stm/2.2.0.1/doc/html/Control-Concurrent-STM.html Documentation for the Control.Concurrent.STM module in GHC]
   
 
* [http://channel9.msdn.com/Showpost.aspx?postid=231495 Programming in the Age of Concurrency: Software Transactional Memory] - interview of Simon Peyton-Jones and Tim Harris.
 
* [http://channel9.msdn.com/Showpost.aspx?postid=231495 Programming in the Age of Concurrency: Software Transactional Memory] - interview of Simon Peyton-Jones and Tim Harris.
Line 27: Line 27:
 
* [http://www.pugscode.org Pugs] (an implementation of Perl 6 in Haskell) uses STM, and also exposes STM to the Perl 6 programmer via a similar interface to STM Haskell.
 
* [http://www.pugscode.org Pugs] (an implementation of Perl 6 in Haskell) uses STM, and also exposes STM to the Perl 6 programmer via a similar interface to STM Haskell.
   
* [http://happstack.com/index.html Happstack], a web framework
+
* [http://happstack.com/ Happstack], a web framework
   
 
* [http://hackage.haskell.org/package/TCache TCache], a transactional cache with configurable persitence.
 
* [http://hackage.haskell.org/package/TCache TCache], a transactional cache with configurable persitence.

Revision as of 09:34, 11 April 2013

Introduction

Software Transactional Memory, or STM, is an abstraction for concurrent communication. The main benefits of STM are composability and modularity. That is, using STM you can write concurrent abstractions that can be easily composed with any other abstraction built using STM, without exposing the details of how your abstraction ensures safety. This is typically not the case with other forms of concurrent communication, such as locks or MVars.

STM for Haskell was first implemented in GHC 6.4. There exist STM implementations for other compilers.

Resources

Projects using STM

As of April 2011, there were more than 200 projects on Hackage with dependencies on GHC's STM implementation, including:

  • Conjure (a bittorrent client) is using STM quite heavily.
  • Shellac is a framework for building read-eval-print style shells. It uses STM, but in a pretty limited way.
  • Pugs (an implementation of Perl 6 in Haskell) uses STM, and also exposes STM to the Perl 6 programmer via a similar interface to STM Haskell.
  • TCache, a transactional cache with configurable persitence.
  • Scurry, P2P VPN implementation.

Examples

  • Examples from this wiki: Search for "concurrent.stm" at the top of this page.