how to do fuzzy search in big data

后端 未结 3 2100
梦如初夏
梦如初夏 2021-01-31 20:05

I\'m new to that area and I wondering mostly what the state-of-the-art is and where I can read about it.

Let\'s assume that I just have a key/value store and I have some

3条回答
  •  情歌与酒
    2021-01-31 20:24

    Depends on what your key/values are like, the Levenshtein algorithm (also called Edit-Distance) can help. It calculates the least number of edit operations that are necessary to modify one string to obtain another string.

    • http://en.wikipedia.org/wiki/Levenshtein_distance
    • http://www.levenshtein.net/

提交回复
热议问题