在Solr8.9中,我希望通过拆分字符串字段将其索引为列表。它部分起作用。如果我的源字符串是 A|B|C .索引后,solr输出为:
A|B|C
"field": ["A|B|C", "A", B", "C"]
我希望是:
"field": ["A", B", "C"]
有人能解释一下,为什么我的多值字段中有源字符串和拆分字符串?我的 data_config.xml ```
data_config.xml
下面是中的字段定义 `schema.xml` 文件
e7arh2l61#
更改了我的列名后,问题就解决了。我的问题 data_config.xml :
query="SELECT Id, Structures as structures FROM Items"
中的字段定义 schema.xml 文件
schema.xml
<field column="structures" splitBy="\|" sourceColName="structures" />
1条答案
按热度按时间e7arh2l61#
更改了我的列名后,问题就解决了。
我的问题
data_config.xml
:中的字段定义
schema.xml
文件