Difference between revisions of "Performance/IO"

From HaskellWiki
Jump to navigation Jump to search
(hGetBuf, and mmapped IO are options)
(No difference)

Revision as of 07:03, 17 February 2006

IO

If the standard lazy IO operations are proving to be a bottleneck, buffer-based IO is an alternative (hGetBuf/hPutBuf). This can be particularly effective when combined with packed strings.

Some external libraries also provide memory mapped IO.