I'm facing the general problem to compile large data sets to an on-disk representation, which can be efficiently de-serialized to native in-memory Haskell data structures.
More specifically, I have a large amount of graph-data with various attributes associated with edges and vertices. In C/C++ I have compiled the data to a mmap()able represenation for maximum efficiency, which currently results in about 200MiB worth of C-structures (and whose text representation is about 600 MiB).
What is the next-best thing I can do in (GHC) Haskell?