Re: Concatenating streams in streaming expressions

2017-03-22 Thread Joel Bernstein
There isn't a cat function yet. The closest function we have currently is a merge function: https://cwiki.apache.org/confluence/display/solr/Streaming+Expressions#StreamingExpressions-merge But I've been meaning to add a cat function so feel free to create the jira. Joel Bernstein http://joelso

Concatenating streams in streaming expressions

2017-03-22 Thread Matt Magnusson
Hello; Does anyone know of a way where I can concatenate source streams? For example if I have two searches search(prod,q="content:cat",fl="id,score",sort="score desc") search(prod,q="content:dog",fl="id,score",sort="score desc") Is there a way to have these come out as one stream. I've been tr