I am trying to load a large dump of dbpedia data into my C# application, I get out of memory exepction everytime I try to load it.
The files are very large text files, holding millions of records and their size is more than 250MB each (one of them is actually 7GB!!), When I try to load the 250MB file to my application, it waits for about 10 seconds during which my RAM (6GB, initially @ 2GB used) increases to be about 5GB used then the program throws an out of memory exception.
I understood that the out of memory exception is all about the empty adjacent chunk of memory, I want to know how to manage to load such a file to my program?
Here's the code I use to load the files, I'm using the dotNetRDF library.
TripleStore temp = new TripleStore();
//adding Uris to the store
temp.LoadFromFile(@"C:\MyTripleStore\pnd_en.nt");