I have a 10GB Data.Vector.Unboxed vector that I want to efficiently save to disk. What's the best, most efficient way? I plan to read it from a memory-mapped file too.
I have seen this package this package but only works with Storable but I need to stay with unboxed.
I was thinking of converting to a list but I am assuming this is not very ideal.