Hi,
I have this query to get a pagecontent node based on jcr:title property this way:
/jcr:root/content/abc/def/ghi/jkl//element(*, cq:PageContent)[@jcr:title = 'config']
When I run this query, I'm observing following kinda warnings in logs:
org.apache.jackrabbit.oak.plugins.index.property.strategy.ContentMirrorStoreStrategy Traversed 7000 nodes using index jcr:primaryType with filter ......
I created following property index:
declaringNodeTypes Name[] cq:PageContent
jcr:primaryType Name oak:QueryIndexDefinition
propertyNames Name[] jcr:title
reindex Boolean FALSE
type String propery
But still the query takes a lot of time to execute. Any thoughts on this.
Thanks in advance 🙂