Performance/IO

From HaskellWiki
< Performance
Revision as of 02:13, 12 July 2012 by Lambda Fairy (talk | contribs) (Updated with iteratees)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Haskell Performance Resource

Constructs:
Data Types - Functions
Overloading - FFI - Arrays
Strings - Integers - I/O
Floating point - Concurrency
Modules - Monads

Techniques:
Strictness - Laziness
Avoiding space leaks
Accumulating parameter

Implementation-Specific:
GHC - nhc98 - Hugs
Yhc - JHC

Before continuing, I strongly recommend reading Performance/Strings first. Fast I/O and string handling overlap in many places, so this page will only discuss the parts that are not specific to strings.

Iteratee I/O

Iteratees are a relatively new approach to streaming I/O. If your code uses I/O extensively (for example, in a web server), iteratees are the best way to do it.

Using the Conduit library, a program to read a file and pipe it to stdout can be written as follows:

main = runResourceT (sourceFile "test.txt" $$ sinkHandle stdout)

Other solutions

If this is too high-level for you, buffer-based IO is an alternative (hGetBuf/hPutBuf). This can be particularly effective when combined with packed strings (see wc).

Some external libraries also provide memory mapped IO.

In 2006, someone came up with a solution called Streams. However, it does not seem to be maintained anymore.