Build an index for substring search?

后端 未结 3 1982
醉话见心
醉话见心 2021-01-05 11:16

I want to do general substring search among billions of strings. The requirement is a little different from general fulltext search because I want a query \"ubst\" also can

3条回答
  •  渐次进展
    2021-01-05 12:11

    Lucene is one of the best available options. Lucene supports sub string search so ubst will return substr.

    check out http://wiki.apache.org/lucene-java/LuceneImplementations for suitable language implementation.

提交回复
热议问题