Description
In our example , we want to limit the properties to search on for Dam Assets on "jcr:title" metadata property.
In http://wiki.apache.org/jackrabbit/IndexingConfiguration I see aggregation can be defined at property level.
Following the example, I tried 2 different config :
1)
<aggregate primaryType="dam:Asset">
<include>jcr:content/metadata</include>
<include-property>jcr:content/metadata/jcr:title</include-property>
</aggregate>
2)
<aggregate primaryType="dam:Asset">
<include-property>jcr:content/metadata/jcr:title</include-property>
property>
</aggregate>
and then tried the result of each performing a fulltext search like /jcr:root/content/dam/geometrixx/offices//element(,dam:Asset)[jcr:contains(., 'somevalue')]
Problem : in config 1) , if another property on the metadata node has this value , the search returns the corresponding node.
In config 2) , nothing is found even if jcr:title has the value 'somevalue'...