Thank you Joel; exactly what I needed! Just had to change it to use
CloudSolrStream instead.
Much appreciated!
-Joe
On 4/18/2017 3:21 PM, Joel Bernstein wrote:
Are you trying to send a streaming expression using SolrJ?
If you are you can send the expression with the SolrStream. for example:
paramsLoc in my last email should be params
Joel Bernstein
http://joelsolr.blogspot.com/
On Tue, Apr 18, 2017 at 3:21 PM, Joel Bernstein wrote:
> Are you trying to send a streaming expression using SolrJ?
>
> If you are you can send the expression with the SolrStream. for example:
>
> params =
Are you trying to send a streaming expression using SolrJ?
If you are you can send the expression with the SolrStream. for example:
params = new ModifiableSolrParams();
params.set("expr", expr);
params.set("qt", "/stream");
SolrStream stream = new SolrStream(url, paramsLoc);
try {
stream.ope