D
D
djung2012-03-26 11:39:28
SQL
djung, 2012-03-26 11:39:28

C# sqlite/NoSQL advise on choice

Hello everyone,

tell me which implementation should I choose.
I need to save a lot of data.
But at the same time, everything should be saved in separate files.

whether to try sqlite or db4o.
I would like something in common between sqlite and mongoDB Thanks

in advance

Answer the question

In order to leave comments, you need to log in

4 answer(s)
A
Anton Taraev, 2012-03-26
@ataraev

Why is storage in separate files necessary? why files?

D
djung, 2012-03-26
@djung

The fact is that the data then needs to be copied to another medium
, most often manually. Separate files are needed for different groups and months.

R
rPman, 2012-03-26
@rPman

sqlite is one of the slowest implementations for writing (on an average win machine from 100ms per transaction), even ms access is faster, but reading is fast, plus high compatibility (if you need a separate file, then you need to transfer it from machine to machine? and sqlite is under ALL platforms)
nosql is generally difficult to compare with sql, the highest speed (an order of magnitude higher than sql), but key -> value creates restrictions, and makes sense mainly for document-oriented databases, i.e. if you have 1->m then you have to serialize the lists and take care of the integrity yourself.

S
sermal, 2012-03-26
@sermal

Do you require further data sampling and analysis?
If not, then you should write directly to the file.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question