How to find best fuzzy match for a string in a large string database

前端 未结 7 1821

I have a database of strings (arbitrary length) which holds more than one million items (potentially more).

I need to compare a user-provided string against the whol

7条回答
  •  遥遥无期
    2020-12-08 11:44

    If your database supports it, you should use full-text search. Otherwise, you can use an indexer like lucene and its various implementations.

提交回复
热议问题