I have a Mono for Android application that reads XML files using the .NET XmlDocument class. Each document is about 180K.
After parsing each document and creating my own internal data structures, I leave no references to the XmlDocument instance, so it becomes eligible for garbage collection.
The problem is, though, that it takes 5-6 seconds before that collection happens, and if I load multiple documents within 5-6 seconds, my app crashes out to the OS with no error messages printed, no exceptions thrown, etc. It just says that thread 12 exited (I'm not creating any extra threads, so I don't understand why it's thread 12 either -- XmlDocument's thread?).
If I load document 1, then wait 5 seconds, then load document 2, wait 5 seconds then load document 3, etc., then everything is OK.
In that case, during the 5 second wait, I can see the GC kicking in several times and releasing around 1MB of memory in total across 4-5 cycles (some marked EXPLICIT, some marked CONCURRENT).
I also tried adding a call to xmlDocument.RemoveAll() once I am done as suggested by an article I found. I also added a call to GC.Collect() after that. It helped slightly, but it still crashes, just somewhat less often.
Any idea how to either increase the available memory or get XmlDocument to behave better?