Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions xml-conduit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,12 @@ package](http://www.stackage.org/package/xml-hamlet) provides a more convenient
syntax for creating XML documents. For a more thorough tutorial on this
library, please see
[http://www.yesodweb.com/book/xml](http://www.yesodweb.com/book/xml).

### Ensuring constant memory usage

If you experience unnecessarily high/increasing memory usage with `Text.XML.Stream.Parse`, you may want to compile `xml-conduit` with `-fno-full-laziness`. You can tell `stack` to use the flag only for this package by putting the following lines into `stack.yaml`:

```
ghc-options:
xml-conduit: -fno-full-laziness
```