I am using full text search to search for a keyword in PDF files stored in assets folder
Following is my Predicate
When I execute the above query it returns 17 results.
So far so good
When I verify the results I found that some of the results are irrelevant (the search key word “hello” is not present in the pdf). So I had a deeper look and found that dam:relativePath property contains the search key word “hello” for all the irrelevant results.
So my question, Is there any way to exclude dam:relativePath property from full text search ?
Solved! Go to Solution.
Views
Replies
Total Likes
Solved by following Query
0_group.4_group.0_fulltext=hello
0_group.4_group.0_fulltext.relPath=jcr:content/renditions/original
0_group.4_group.1_path=/content/dam/site/documents
Views
Replies
Total Likes
You can check if the "dam:relativePath" is indexed as part of the properties under the node at [1]. If yes, you can remove the "dam:relativePath" property from the index, re-index and try to re-run the query
[1] /oak:index/damAssetLucene/indexRules/dam:Asset/properties
Views
Replies
Total Likes
dam:relativePath is not present in /oak:index/damAssetLucene/indexRules/dam:Asset/properties
Views
Replies
Total Likes
Depending on the version of AEM this change would get reverted on restart. In newer versions of AEM you cannot change the default index definitions, they will revert if you change existing ootb properties.
Views
Replies
Total Likes
Solved by following Query
0_group.4_group.0_fulltext=hello
0_group.4_group.0_fulltext.relPath=jcr:content/renditions/original
0_group.4_group.1_path=/content/dam/site/documents
Views
Replies
Total Likes
Views
Likes
Replies