4
我有以下的(簡化)Solr模式:搜索多值字段自連接
<schema name="documents" version="1.1">
<uniqueKey>id</uniqueKey>
...
<fields>
<field
name="id"
type="string"
indexed="true"
stored="true"
required="true"/>
<field
name="documentReferences"
type="string"
indexed="true"
stored="false"
multiValued="true"
required="false"/>
</fields>
</schema>
這將是該documentReferences
字段中的值的其他documents
所有ids
有本索引solr核心。
我要完成的(英文)搜索:
Documents who's id is not in any other document's documentReferences field
這可能嗎?如果能夠幫助回答這個問題,我不會在索引另一個字段時遇到問題。