Re: Term Vector Component Question

2013-11-27 Thread Erick Erickson
> at > >> the level of actual terms that matched. > >> > >> > >> -- Jack Krupansky > >> > >> -Original Message- From: Jamie Johnson > >> Sent: Wednesday, November 27, 2013 12:18 PM > >> > >> To: solr-user@lucene.a

Re: Term Vector Component Question

2013-11-27 Thread Jamie Johnson
ive you a lot more control, but not at >> the level of actual terms that matched. >> >> >> -- Jack Krupansky >> >> -Original Message- From: Jamie Johnson >> Sent: Wednesday, November 27, 2013 12:18 PM >> >> To: solr-user@lucene.apache.org >&

Re: Term Vector Component Question

2013-11-27 Thread Jamie Johnson
27, 2013 12:18 PM > > To: solr-user@lucene.apache.org > Subject: Re: Term Vector Component Question > > thanks I'm looking at this now, debug seems pretty close to what I want. > Is there a way to exclude information from the debug response, for > instance I don't need id

Re: Term Vector Component Question

2013-11-27 Thread Jack Krupansky
ansky -Original Message- From: Jamie Johnson Sent: Wednesday, November 27, 2013 12:18 PM To: solr-user@lucene.apache.org Subject: Re: Term Vector Component Question thanks I'm looking at this now, debug seems pretty close to what I want. Is there a way to exclude information fro

Re: Term Vector Component Question

2013-11-27 Thread Jamie Johnson
of, sort of, at least where all query terms must be matched, >> but when the "OR" operator is used, it won't tell you which term matched - >> although a tf value of 0 basically tells you that. >> >> >> -- Jack Krupansky >> >> -Origi

Re: Term Vector Component Question

2013-11-27 Thread Jamie Johnson
> but when the "OR" operator is used, it won't tell you which term matched - > although a tf value of 0 basically tells you that. > > > -- Jack Krupansky > > -Original Message- From: Jamie Johnson > Sent: Wednesday, November 27, 2013 11:38 AM > To: solr-user@

Re: Term Vector Component Question

2013-11-27 Thread Jack Krupansky
is used, it won't tell you which term matched - although a tf value of 0 basically tells you that. -- Jack Krupansky -Original Message- From: Jamie Johnson Sent: Wednesday, November 27, 2013 11:38 AM To: solr-user@lucene.apache.org Subject: Re: Term Vector Component Question Jack,

Re: Term Vector Component Question

2013-11-27 Thread Jamie Johnson
I definitely want tf, the number of times the matched term appears in the document, the key is that I want only the term that was searched for, not all terms. Looking at the tf function this is close, except it needs to be the exact term, I really need it to be the user entered text. So for insta

Re: Term Vector Component Question

2013-11-27 Thread Jamie Johnson
Jack, I'm not following, are you suggesting to turn on debug and then parse the explain? Seems very round about if that is the case, no? On Wed, Nov 27, 2013 at 9:40 AM, Jack Krupansky wrote: > That information would be included in the debugQuery output as well. > > -- Jack Krupansky > > -

Re: Term Vector Component Question

2013-11-27 Thread Jack Krupansky
That information would be included in the debugQuery output as well. -- Jack Krupansky -Original Message- From: Jamie Johnson Sent: Wednesday, November 27, 2013 9:32 AM To: solr-user@lucene.apache.org Subject: Term Vector Component Question I am interested in retrieving the tf for

Re: Term Vector Component Question

2013-11-27 Thread Erick Erickson
Would it serve to return the tf or ttf? You'd have to tack on clauses like fl=*,ttf(name,drive) or fl=*.ttf(name,drive) Which implies that you'd have to do some work on the query side to add the tf or ttf clauses. See: http://wiki.apache.org/solr/FunctionQuery#tf Best, Erick On Wed, Nov 27, 20