database - Electron local storage options to deal with large data upto 1gb -
my electron application saving data in settings.json file using 'electron-settings' library. data has many records relatively short strings each. since possible data can grow upto 1gb, concerned getting , setting values large json file may introduce performance issues in future. searched options , found "nedb" , "leveldb" local database. wish know if there can performance gain in getting , setting values if implement such local databases on manipulating json file.
update:
complex queries not necessary use case. application needs execute operations such db.set('people.record', 'string_value')
on large volume of records.
Comments
Post a Comment