I have a requirement to store some huge collection of data just until I consume it. For example, I download a file(a csv probably, which can be some hundreds of MB) and store its contents in a db. After the whole file's written to db, another process read this collection and delete it.
I prefer using MongoDB for this. However I was told VoldDb is better for this kind of purposes.
I would like to know why exactly VoldDB is and how its better(if it is) than mongoDB for temporary storage.