我们可以在范围约束中使用用户定义的锚点来计算bucket吗



我有一些类似的文档内容,并且在元素"key"上有一个范围索引。

<root>
  <key>NAM</key>
  <key>NA</key>
  <key>North America</key>
</root>

在生成facet时,我想将"NAM"one_answers"NA"计算为一组,而不是每个组。

所以我尝试使用计算的bucket,或多或少像这个例子:

<constraint name="date">
  <range type="xs:dateTime" facet="true">
    <element ns="http://example.com" name="entry"/> 
    <attribute ns="" name="date"/>
    <computed-bucket lt="-P1Y" anchor="start-of-year" name="older">Older</computed-bucket>
    <computed-bucket lt="P1Y" ge="P0Y" anchor="start-of-year" name="year">This Year</computed-bucket>
    <computed-bucket lt="P1M" ge="P0M" anchor="start-of-month" name="month">This Month</computed-bucket>
    <computed-bucket lt="P1D" ge="P0D" anchor="start-of-day" name="today">Today</computed-bucket>
    <computed-bucket ge="P0D" anchor="now" name="future">Future</computed-bucket>
    <facet-option>descending</facet-option>
  </range>
</constraint>

但我注意到锚点通常是由MarkLogic预定义的,所以我想问:我可以使用我自己定义的锚点吗,就像下面的函数一样?

<computed-bucket ge="P0D" anchor="myAnchor.xqy" name="future">Future</computed-bucket>

对于您定义的范围,您可以使用bucket而不是计算bucket:

http://docs.marklogic.com/guide/search-dev/appendixa#id_80046

大概是:

<bucket name="N" lt="O" ge="N">Terms that start with N</bucket>

希望有帮助,

计算存储桶不是字符串值的选项。如果bucket过于死板,可以考虑编写一个自定义方面。下面是一个允许对值模式进行分组的示例:

https://github.com/grtjn/ml-constraints/blob/master/grouping-constraint.xqy

啊!

相关内容

  • 没有找到相关文章

最新更新