Hi,
I have a working fulltext search query which finds a text in a folder
map.put("path", path);
map. Put("fulltext", matchString);
map.put("p.limit", "-1");
map.put("p.excerpt", "true");
map.put("p.offset", offset);
map.put("type", "dam:Asset");
map.put("group.p.or", "true");
But this returns the number of total files matching the query, I need the total number of occurrences also. Is there a way I can get that ?
Views
Replies
Total Likes
Have you tried executing the same query over querydebugger?
http://localhost:4502/libs/cq/search/content/querydebug.html
Hello @krati_garg
yes I have executed it on the query debugger. It gives the total matches which the file count. But I also need the number of occurrences
Can you please add the screen shot of that response here?
Hi @krati_garg
so is the total number of files found 4,
or is the number of occurrence in the first file 1 and one in the name ?
Didn't get the question above, however you are searching into dam, where full text search has its own limitation.
If the selected String is stored in any jcr property, then also matching Asset would come in result set. OOTB Full text Search would not search in Asset Binary like PDF's text, unless these files are indexed into a Solr set up.
It would be helpful to know, what we are trying to figure out by obtaining number of occurrences.
Hello @tasunil1
We can only find total matches (resources) via query. Not the total occurrences.
If you need this info on per asset level, then:
@tasunil1 Do you find the suggestions from users useful? Please let us know if more information is required. Otherwise, please mark the answer as correct for posterity.
Views
Replies
Total Likes