I run tight loops (game engine -- 60fps with a lot of memory activity and allocations each frame), and the GC works remarkably well at keeping things sane. I did have a problem with runaway allocations once, and tracked it down to a source of allocations which was effectively never un-referenced... so a legitimate leak. If you do a Gc.full_major (), is your memory returned? If not, then I think that's evidence that there's still some handle on it -- be sure the appropriate values have fallen out of scope and aren't referenced in some other way! On the other hand, if this is just the GC not cleaning up quick enough for your case... I'm sorry I have no help for tuning the GC. The documentation in gc.mli seemed pretty sensible when I looked at it (a while ago) though! On Sun, Aug 18, 2013 at 2:53 PM, oliver wrote: > With the subset of the files I want to read, > I get these two GC-stats-outputs (Gc.print_stats) at the beginning and > the end of the reading loop: > > > -------------------- > minor_words: 176917 > promoted_words: 28265 > major_words: 83313 > minor_collections: 5 > major_collections: 1 > heap_words: 126976 > heap_chunks: 1 > top_heap_words: 126976 > live_words: 82608 > live_blocks: 7325 > free_words: 44368 > free_blocks: 33 > largest_free: 43663 > fragments: 0 > compactions: 0 > -------------------- > minor_words: 119944974 > promoted_words: 18927217 > major_words: 55119706 > minor_collections: 3672 > major_collections: 71 > heap_words: 14221824 > heap_chunks: 112 > top_heap_words: 14221824 > live_words: 10194963 > live_blocks: 1184994 > free_words: 4024031 > free_blocks: 46685 > largest_free: 65811 > fragments: 2830 > compactions: 6 > -------------------- > > > What does this tell you? > How to clean the mem? > > > Ciao, > Oliver > > -- > Caml-list mailing list. Subscription management and archives: > https://sympa.inria.fr/sympa/arc/caml-list > Beginner's list: http://groups.yahoo.com/group/ocaml_beginners > Bug reports: http://caml.inria.fr/bin/caml-bugs >