My app reads questions and their answers. Now I have to make it store them and read them from HDD. The idea is to read all data and store it in memory on app initialization, because speed is important.
But the problem is I lack the model of storing all this information in a file. I've been working with ini files only, but file size is limited and it is SO slow to read.
Could you please suggest a model and a sample? Thanks!