DictDataBase icon indicating copy to clipboard operation
DictDataBase copied to clipboard

Improve where selector for file

Open mkrd opened this issue 3 years ago • 0 comments

The entire file needs to be read, but by partially reading each key value pair sequentially, we can prevent having to load the entire file into memory.

Proposal:

  • Do many partial reads instead of one full read
  • Might lead to a lot of overhead since multiple full reads will be executed if multiple keys are not in the index.

mkrd avatar Nov 12 '22 18:11 mkrd