We have a requirement where we need to group our records by a particular field and take the sum of a corresponding numeric field
e.x. select userid, sum(click_count) from user_action group by ...
I use Solr 3.3 and I would like to group results.
I use Solritas Search UI for displaying the results. When I search for a word 'test' I get the result ...
I'm using Solr 3.4 and FieldCollapsing. I would like to group all messages using FieldCollapsing.
Per default, every group contains only 1 message.
I can modify the numbers of documents per ...
I'm getting strange results with Solr. One query, that groups a couple of fields returns no results, but if I remove the outer parentheses, it returns the expected results.
No results:
" AND ...
http://localhost:8080/solr/select?q=(apposta apposta per) OR (sue prime ore al)&group=true&group.field=grouping_field&group.limit=5
This query returns 2 groups first group has 1 document and second group has 2 documents.
In response I see count of documents(3) ...