Solr 3.2 edismax

发布于 2024-12-19 04:43:52 字数 539 浏览 2 评论 0原文

我正在尝试使用 edismax defType 并遇到以下错误。

HTTP 错误:400 未知的查询类型“edismax”

solrconfig.xml 文件中的请求处理程序如下所示

<requestHandler name="foobar" class="solr.SearchHandler">
    <lst name="defaults">
      <str name="defType">edismax</str>
      <str name="qf">block</str>
      <str name="q.alt">*:*</str>
   </lst>
</requestHandler>

我的目标是使用此搜索处理程序进行通配符搜索。

我们最近从 1.4 升级到使用 Solr 3.2。是否需要更改设置或配置才能允许 edismax?

谢谢!

I am trying to use the edismax defType and am running into the following error.

HTTP ERROR : 400
Unknown query type 'edismax'

The request handler in the solrconfig.xml file looks as follows

<requestHandler name="foobar" class="solr.SearchHandler">
    <lst name="defaults">
      <str name="defType">edismax</str>
      <str name="qf">block</str>
      <str name="q.alt">*:*</str>
   </lst>
</requestHandler>

My goal is to do wildcard searches with this search handler.

We recently upgraded to use Solr 3.2 from 1.4. Is there a setting or a config that has to be change to allow edismax?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月隐月明月朦胧 2024-12-26 04:43:52

HTTP 错误:400 未知查询类型“edismax”
它指示无效的查询类型参数,该参数是 qt 而不是 defType。

您是否尝试使用 qt=edismax,如果是这样,可能会导致此错误,因为请求处理程序名为 foobar
您可以将 foobar 重命名为 edismax 或使用 qt=foobar

HTTP ERROR : 400 Unknown query type 'edismax'
Its indicating an invalid query type parameter which is qt and not defType.

Are you trying to use qt=edismax, if so, this might result into this error as the request handler is named foobar.
You can rename foobar to edismax or use qt=foobar

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文