Difference between revisions of "Iteratee I/O"

From HaskellWiki
Jump to navigation Jump to search
(Added a link to iterIO and a link to the enumerator category on Hackage)
(Added a remark about iterIO not being compilable on Windows)
Line 28: Line 28:
   
 
Packages:
 
Packages:
* [http://hackage.haskell.org/package/iterIO iterIO]
+
* [http://hackage.haskell.org/package/iterIO iterIO] (note, that this will not compile on Windows, as it depends on the package unix)
 
* [http://hackage.haskell.org/package/enumerator enumerator] [http://www.haskell.org/pipermail/haskell-cafe/2010-August/082324.html ANNOUNCE: enumerator, an alternative iteratee package] (this package does not use any extensions, so it will work with most Haskell compilers)
 
* [http://hackage.haskell.org/package/enumerator enumerator] [http://www.haskell.org/pipermail/haskell-cafe/2010-August/082324.html ANNOUNCE: enumerator, an alternative iteratee package] (this package does not use any extensions, so it will work with most Haskell compilers)
 
* [http://hackage.haskell.org/package/attoparsec-iteratee attoparsec-iteratee]: An adapter to convert attoparsec Parsers into blazing-fast Iteratees
 
* [http://hackage.haskell.org/package/attoparsec-iteratee attoparsec-iteratee]: An adapter to convert attoparsec Parsers into blazing-fast Iteratees

Revision as of 13:35, 6 May 2011

This article is a stub. You can help by expanding it.

Iteratee I/O is a way to avoid the problems that can occur with lazy I/O.

Discussions elsewhere on this wiki include:

Essays by Oleg:

Other discussions:

Uses of Iteratee I/O:

  • hyena: The Hyena web application server
  • Snap : The Snap web framework
  • yaml: Low-level binding to the libyaml C library]
  • usb 0.4: Communicate with USB devices
  • sstable: SSTables in Haskell
  • wai-handler-snap: Web Application Interface handler using snap-server

Packages: