Re: highlighting on child document

2016-11-17 Thread Yangrui Guo
highlight fields in a parent document when using Block Join > Parser. > > > > -- > View this message in context: http://lucene.472066.n3. > nabble.com/highlighting-on-child-document-tp4238236p4306375.html > Sent from the Solr - User mailing list archive at Nabble.com. >

Re: highlighting on child document

2016-11-17 Thread vstrugatsky
/highlighting-on-child-document-tp4238236p4306375.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: highlighting on child document

2015-11-08 Thread Yangrui Guo
But how does highlighting work with block join query? Do I need to supply additional parameter? Yangrui On Sun, Nov 8, 2015 at 12:45 PM, Mikhail Khludnev < mkhlud...@griddynamics.com> wrote: > On Thu, Nov 5, 2015 at 12:12 AM, Mikhail Khludnev < > mkhlud...@griddynamics.com> wrote: > > > > > High

Re: highlighting on child document

2015-11-08 Thread Mikhail Khludnev
On Thu, Nov 5, 2015 at 12:12 AM, Mikhail Khludnev < mkhlud...@griddynamics.com> wrote: > > Highlighter for block join hasn't been implemented. Here I'm wrong: https://issues.apache.org/jira/browse/LUCENE-5929 -- Sincerely yours Mikhail Khludnev Principal Engineer, Grid Dynamics

Re: highlighting on child document

2015-11-05 Thread Yangrui Guo
So if child document highlighting doesn't work how can I let solr tell which child document and its field matched? On Wednesday, November 4, 2015, Mikhail Khludnev wrote: > Hello, > > Highlighter for block join hasn't been implemented. So, far you can call > highlighter with children query also

Re: highlighting on child document

2015-11-04 Thread Mikhail Khludnev
Hello, Highlighter for block join hasn't been implemented. So, far you can call highlighter with children query also passing fq={!child ..}parent-id:. On Wed, Nov 4, 2015 at 7:57 PM, Yangrui Guo wrote: > Hi > > I want to highlight matched terms on child documents because I need to > determine w

Re: highlighting on child document

2015-11-04 Thread Alessandro Benedetti
My colleagues will correct me if i am wrong. Solr Join is actually not the same as Relational Join. This means that you can return in the result only one layer of entities ( the parent layer or the child layer ) even if your original search was on a different layer. You can search on children and r

highlighting on child document

2015-11-04 Thread Yangrui Guo
Hi I want to highlight matched terms on child documents because I need to determine which field matched the search terms. However when I use block join solr returned empty highlight fields. How can I use highlight with nested document? Or is there anyway to tell which field matched the query terms