Re: exact matches on a join

2019-11-21 Thread rhys J
On Thu, Nov 21, 2019 at 8:04 AM Jason Gerlowski wrote: > Are these fields "string" or "text" fields? > > Text fields receive analysis that splits them into a series of terms. > That's why the query "Freeman" matches the document "A-1 Freeman". > "A-1 Freeman" gets split up into multiple terms, an

Re: exact matches on a join

2019-11-21 Thread Jason Gerlowski
Are these fields "string" or "text" fields? Text fields receive analysis that splits them into a series of terms. That's why the query "Freeman" matches the document "A-1 Freeman". "A-1 Freeman" gets split up into multiple terms, and the "Freeman" query matches one of those terms. Text fields are

exact matches on a join

2019-11-19 Thread rhys J
I am trying to do a join, which I have working properly on 2 cores. One core has report_as, and the other core has debt_id. If I enter 'report_as: "Freeman", I expect to get 272 results. But I get 557. When I do a database search on the matched fields, it shows me that report_as: "Freeman" is ma