I'm currently exploring different "embedded" data options for my mobile application. Ideally I want to use a nosql data store, so i'm giving MarcelloDB a try.
Right now, i have a data collection of approximately 65000 records. From some basic testing, it looks like it takes about 0.015 seconds to insert a single record with an id and 1 index. With this many records that will take a somewhere around 15 minutes to process every record and save it to the database file(s) (if i'm doing my math right).
It looks like there is only a single persist method and you have to insert records individually. Is there a way to perform a bulk insert (something like an AddRange)?
I'm currently exploring different "embedded" data options for my mobile application. Ideally I want to use a nosql data store, so i'm giving MarcelloDB a try.
Right now, i have a data collection of approximately 65000 records. From some basic testing, it looks like it takes about 0.015 seconds to insert a single record with an id and 1 index. With this many records that will take a somewhere around 15 minutes to process every record and save it to the database file(s) (if i'm doing my math right).
It looks like there is only a single persist method and you have to insert records individually. Is there a way to perform a bulk insert (something like an AddRange)?