RE: Use stream result like a query (alternative to innerJoin)

2020-11-24 Thread ufuk yılmaz
, using string concat function and eval stream. So far I couldn’t write a working example, but it’s an idea that I’m playing with. Sent from Mail for Windows 10 From: Joel Bernstein Sent: 23 November 2020 23:23 To: solr-user@lucene.apache.org Subject: Re: Use stream result like a query

Re: Use stream result like a query (alternative to innerJoin)

2020-11-23 Thread Joel Bernstein
Here is the documentation for fetch: https://lucene.apache.org/solr/guide/8_4/stream-decorator-reference.html#fetch Joel Bernstein http://joelsolr.blogspot.com/ On Mon, Nov 23, 2020 at 3:22 PM Joel Bernstein wrote: > There are two streams that behave like that. > > One is the "nodes"

Re: Use stream result like a query (alternative to innerJoin)

2020-11-23 Thread Joel Bernstein
There are two streams that behave like that. One is the "nodes" expression, which is not going to work for this use case because it does everything in memory. The second one is the "fetch" expression which behaves like a nested loop join with some limitations. Unfortunately the main limitation