Team,
I had another query opened but I was closed.
how to query JCR to get results in random order. For every query of JCR, the results should be in random order. Like in SQL where there is order by rand(). Could someone help with this.
path=/content/we-retail
1_property=sling:resourceType
1_property.value=summer/components/page/activities
1_property.operation=like
The order by is not by a specific field but by random number.
Thanks.
Solved! Go to Solution.
Please try with the code provided:
PredicateGroup group = new PredicateGroup();
group.add(new Predicate("mypath", "path").set("path", "/content"));
group.add(new Predicate("mytype", "type").set("type", "nt:file"));
Query query = queryBuilder.createQuery(group, session);
if (query != null) {
List<hit> list = result.getHits();
Collections.shuffle(list);
}
Hi @v1101 ,
jcr queries doesn't have option for randomizer but you have an option to achieve the outcome using collection. Because jcr result set is a collection and in collection you have option to shuffle the result.
Please check the below thread for more details.
Please try with the code provided:
PredicateGroup group = new PredicateGroup();
group.add(new Predicate("mypath", "path").set("path", "/content"));
group.add(new Predicate("mytype", "type").set("type", "nt:file"));
Query query = queryBuilder.createQuery(group, session);
if (query != null) {
List<hit> list = result.getHits();
Collections.shuffle(list);
}
Order isn't guaranteed.
The default search implementation of Apache Lucene returns results sorted by score (the most relevant result first), then by id (the oldest result first).
Hello @v1101
What you are trying to achieve means performance bottle necks:
- One for getting all results at once
- Consuming memory to maintain these. Lot of resources used, if its different for each user
- Shuffling
- Since, its dynamic, means no caching on dispatcher/CDN
Rather than shuffling, you can probably create multiple selectors to map against specific properties. Let UI choose a selector randomly, and request. Fetch results base on these pre-defined selector->property mapping. Benefits:
- Responses for all selectors can be cached.
- Using offset, get unique results for each page
Views
Replies
Total Likes
Views
Likes
Replies