I forgot to mention, in order to do a join you would merge the streams together that you wanted to join. Then reduce by the join key. This is basic structure:
reduce(merge(search(), search())) Joel Bernstein http://joelsolr.blogspot.com/ On Sun, Feb 18, 2018 at 10:45 PM, Joel Bernstein <joels...@gmail.com> wrote: > If you aren't getting the join functionality you want with the current > join implementations you could try the reduce function using the group > operation. > > Here is the sample syntax: > > reduce(search(collection1, q=*:*, fl="id,a_s,a_i,a_f", sort="a_s asc, a_f > asc"), > by="a_s", > group(sort="a_f desc", n="4") > ) > > > The is a basic map/reduce grouping operation. > > > Joel Bernstein > http://joelsolr.blogspot.com/ > > On Sun, Feb 18, 2018 at 6:24 PM, GaneshSe <ganeshmail...@gmail.com> wrote: > >> Any help solr streaming expression option is greatly appreciated. Please >> help >> >> >> >> -- >> Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html >> > >