Lucene查询和分析器组合

时间:2011-02-02 17:12:27

标签: lucene analyzer

我有一个简单的问题。说,我有一个字符串"this string has some text in it"。我希望lucene能够使用以下搜索找到它:

"string has"
"has this"
"text this"

我应该使用Analyzer和Query的哪种组合? Lucene 3.0.3。

1 个答案:

答案 0 :(得分:2)

  1. 您可能想使用solr而不是lucene,因为它不需要您知道这样的事情
  2. 标准分析器和查询解析器将起作用。