Re: search hit on multivalued fields

2012-08-04 Thread Erick Erickson
What about just using highlighting and display both fields? Best Erick On Fri, Aug 3, 2012 at 5:51 AM, Mark , N wrote: > I have a multivalued field "Tex" which is indexed , for example : > > F1: some value > F2: some value > Text = ( content of f1,f2) > > When user search , I am checking only

Re: search hit on multivalued fields

2012-08-03 Thread Mikhail Khludnev
Mark, It's not clear what are you want to do. Let's say you requested rows=100 and found 1000 docs. What do you need to show in addition to search result? - matched field on every of 100 snippets - or "400 with F1 and 600 with F2" - or what On Fri, Aug 3, 2012 at 6:41 PM, Jack Krupansky wrote: >

Re: search hit on multivalued fields

2012-08-03 Thread Jack Krupansky
You can include the fields in your "fl" list and then check those field values explicitly in the client, or you could add &debugQuery=true to your request and check for which field the term matched in. The latter requires that you have the analyzed term (or check for closest matching term). --