SOLR 配置文件可以位于父文件夹中吗?

发布于 2024-11-01 06:48:20 字数 543 浏览 1 评论 0原文

我已经配置了 SOLR 的 QueryElevation searchComponent,如下所示: http://wiki.apache.org/solr/SchemaXml#The_Unique_Key_Field

但是,我例如从默认文件夹上方的多个文件夹加载 elevate.xml 文件。

我无法让它工作...以下所有内容都会生成错误:

<str name="config-file">../../elevate.xml</str>
<str name="config-file">..\..\elevate.xml</str>
<str name="config-file">c:/elevate.xml</str>
<str name="config-file">c:\elevate.xml</str>

I have configured the QueryElevation searchComponent of SOLR as documented here:
http://wiki.apache.org/solr/SchemaXml#The_Unique_Key_Field

However, I would like to load the elevate.xml file from several folders above the default one.

I cannot get this to work... all of the following generate an error:

<str name="config-file">../../elevate.xml</str>
<str name="config-file">..\..\elevate.xml</str>
<str name="config-file">c:/elevate.xml</str>
<str name="config-file">c:\elevate.xml</str>

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

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

发布评论

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

评论(1

眼睛会笑 2024-11-08 06:48:20

根据 Solr wiki

定义查询提升的文件的路径。此文件必须存在于:

  1. ${instanceDir}/conf/${config-file} 或
  2. ${dataDir}/${config-file}中

Per the Solr wiki:

Path to the file that defines query elevation. This file must exist in:

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