Solr Suggestor的DSE CQL查询

时间:2018-06-11 05:17:52

标签: solr datastax-enterprise cassandra-3.0 autosuggest search-suggestion

我使用的是DSE 5.0.1版本。之前我们使用facet查询来显示搜索建议。出于性能原因,寻找其他替代方案以获取建议并找到solr搜索建议组件。但我找不到从CQL查询中使用建议组件的示例。它可能是对的吗?任何人都可以帮助我。 提前谢谢。

1 个答案:

答案 0 :(得分:1)

是的,它可能且相对简单 - 您只需要了解如何将要放入生成的solrconfig.xml的XML映射到用于配置的JSON中。

例如,我们希望配置建议者以建议来自字段title的数据,并使用rating字段中的其他权重。根据{{​​3}},XML片段应该遵循以下方式:

  <searchComponent class="solr.SuggestComponent" name="suggest">
    <lst name="suggester">
      <str name="name">titleSuggester</str>
      <str name="lookupImpl">AnalyzingInfixLookupFactory</str>
      <str name="dictionaryImpl">DocumentDictionaryFactory</str>
      <str name="suggestAnalyzerFieldType">TextField</str>
      <str name="field">title</str>
      <str name="weightField">rating</str>
      <str name="buildOnCommit">false</str>
      <str name="exactMatchFirst">true</str>
      <str name="contextField">country</str>
    </lst>
  </searchComponent>
  <requestHandler class="solr.SearchHandler" name="/suggest">
    <arr name="components">
      <str>suggest</str>
    </arr>
    <lst name="defaults">
      <str name="suggest">true</str>
      <str name="suggest.count">10</str>
    </lst>
  </requestHandler>

在CQL中,它将被转换

ALTER SEARCH INDEX CONFIG ON table ADD 
  searchComponent[@name='suggest',@class='solr.SuggestComponent'] 
  WITH  $$ {"suggester":[{"name":"titleSuggester"}, 
   {"lookupImpl":"AnalyzingInfixLookupFactory"}, 
   {"dictionaryImpl":"DocumentDictionaryFactory"},
   {"suggestAnalyzerFieldType":"TextField"}, 
   {"field":"title"}, {"weightField":"rating"}, 
   {"buildOnCommit":"false"}, {"exactMatchFirst":"true"},
   {"contextField":"country"}]} $$;

ALTER SEARCH INDEX CONFIG ON table ADD 
  requestHandler[@name='/suggest',@class='solr.SearchHandler'] 
  WITH  $$ {"defaults":[{"suggest":"true"}, 
    {"suggest.count":"10"}],"components":["suggest"]} $$;

之后你不必忘记执行:

RELOAD SEARCH INDEX ON table;

你的推荐人会工作。在我的示例中,建议者的索引应该明确构建,因为库存不会经常变化。这是通过HTTP调用完成的,如下所示:

curl 'http://localhost:8983/solr/keyspace.table/suggest?suggest=true&suggest.dictionary=titleSuggester&suggest.q=Wat&suggest.cfq=US&wt=json&suggest.build=true&suggest.reload=true'

但您可以通过将buildOnCommit设置为true来控制此操作。或者您可以将其配置为在启动时构建建议者索引等 - 请参阅Solr的文档。

完整示例是Solr documentation - 这是电子商务应用程序的一个示例。