Re: The easiest way to get array of matched terms

2019-05-06 Thread SOLR4189
Nice feature, but it isn't what I search. -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: The easiest way to get array of matched terms

2019-05-06 Thread Mikhail Khludnev
Hi, debug.explain.structured=true parameter may be specified to return this information as nested data structures native to the response format requested by wt. On Mon, May 6, 2019 at 10:01 AM SOLR4189 wrote: > Hi all, > > What is the easiest way to get array of matched terms per doc

The easiest way to get array of matched terms

2019-05-06 Thread SOLR4189
Hi all, What is the easiest way to get array of matched terms per doc? I don't need positions or offsets, matched terms only. I found a way - debug=results, but it requires to parse result (for example, extract term from weight(field_name: term). Maybe does somebody know another way? Wi