>From http://wiki.apache.org/solr/FieldCollapsing
"Return a single group of documents that also match the given query." ''' We can find the top documents that also match arbitrary queries with the group.query command (much like facet.query). For example, we could use this to find the top 3 documents with in different price ranges: ...&q=memory&group=true&group.query=price:[0 TO 99.99]&group.query=price:[100 TO *]&group.limit=3 ''' -Yonik http://lucidworks.com On Thu, Jan 3, 2013 at 6:22 PM, Lance Norskog <goks...@gmail.com> wrote: > What does group.query do? How is it different from q= and fq= ? > > Thanks. > >