比方說,我有2個文件的結果(不只是一根火柴):Marklogic - 匹配約束X倍
<doc1>
<a>the dog</a>
<a>the cat</a>
<a>the human</a>
</doc1>
和
<doc2>
<a>the dog</a>
<a>foo</a>
<a>bar</a>
</doc2>
現在對於Marklogic,我想搜索他們爲「的」,所以我可能會遇到:
search:search(
'a:the',
<options xmlns="http://marklogic.com/appservices/search">
<constraint name="a">
<value>
<term-option>case-insensitive</term-option>
<element ns="" name="a"/>
</value>
</constraint>
</options>
)
這個工作,但同時返回文件(這是我問) 但是,如果我只想要約束條件超過1的結果... ie。 '給我的文件,有2+節點與'the''
我不知道從哪裏開始。謝謝!