I was excited to find this announcement:
https://www.reddit.com/r/FlutterDev/comments/1ai0xs7/announcing_mobilefirst_dvdb_dart_vector_db_the/
But then I was curious about the scaling performance of search, so I looked at the code, and found that you're doing a linear search through documents. This is terrible for scalability, and your benchmarks are therefore deceptive, because you are only searching a small number of documents...
You need to spell this out in your README.md, otherwise users may be surprised.
I was excited to find this announcement:
https://www.reddit.com/r/FlutterDev/comments/1ai0xs7/announcing_mobilefirst_dvdb_dart_vector_db_the/
But then I was curious about the scaling performance of search, so I looked at the code, and found that you're doing a linear search through documents. This is terrible for scalability, and your benchmarks are therefore deceptive, because you are only searching a small number of documents...
You need to spell this out in your
README.md, otherwise users may be surprised.