You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-issues@jackrabbit.apache.org by "Chetan Mehrotra (JIRA)" <ji...@apache.org> on 2014/11/21 06:20:33 UTC

[jira] [Created] (OAK-2281) Support for conditional indexingRules

Chetan Mehrotra created OAK-2281:
------------------------------------

             Summary: Support for conditional indexingRules
                 Key: OAK-2281
                 URL: https://issues.apache.org/jira/browse/OAK-2281
             Project: Jackrabbit Oak
          Issue Type: Sub-task
          Components: oak-lucene
            Reporter: Chetan Mehrotra
            Assignee: Chetan Mehrotra
             Fix For: 1.2


JR2 supported conditional indexing rules like below. Similar support should be provided within Oak

{code:xml}
<configuration xmlns:nt="http://www.jcp.org/jcr/nt/1.0">
  <index-rule nodeType="nt:unstructured"
              boost="2.0"
              condition="ancestor::*/@priority = 'high'">
    <property>Text</property>
  </index-rule>
  <index-rule nodeType="nt:unstructured"
              boost="0.5"
              condition="parent::foo/@priority = 'low'">
    <property>Text</property>
  </index-rule>
  <index-rule nodeType="nt:unstructured"
              boost="1.5"
              condition="bar/@priority = 'medium'">
    <property>Text</property>
  </index-rule>
  <index-rule nodeType="nt:unstructured">
    <property>Text</property>
  </index-rule>
</configuration>
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)