Re: Solrj supporting term vector component ?

2020-12-04 Thread Erick Erickson
be specified in SolrJ by setting the parameter explicitly”. Best, Erick > On Dec 3, 2020, at 1:24 PM, Shawn Heisey wrote: > > On 12/3/2020 10:20 AM, Deepu wrote: >> I am planning to use Term vector component for one of the use cases, as per >> below solr documentation link solr

Re: Solrj supporting term vector component ?

2020-12-03 Thread Shawn Heisey
On 12/3/2020 10:20 AM, Deepu wrote: I am planning to use Term vector component for one of the use cases, as per below solr documentation link solrj not supporting Term Vector Component, do you have any other suggestions to use TVC in java application? https://lucene.apache.org/solr/guide/8_4

Solrj supporting term vector component ?

2020-12-03 Thread Deepu
Dear Community Members, I am planning to use Term vector component for one of the use cases, as per below solr documentation link solrj not supporting Term Vector Component, do you have any other suggestions to use TVC in java application? https://lucene.apache.org/solr/guide/8_4/the-term-vector

querying for positions (with term vector component)

2018-04-16 Thread Arturas Mazeika
Hi All, Term vector component allows to store and retrieve quite a bit of very useful information, e.g., for a term one can get: "verlag",[ "tf",6, "positions",["position",5, "position",42, "position",64, "position",8

Inverted Index positions vs Term Vector positions

2017-11-27 Thread alessandro.benedetti
Hi all, it may sounds a silly question, but is there any reason that the term positions in the inverted index are using 1 based numbering while the Term Vector positions are using a 0 based numbering[1] ? This may affect different areas in Solr and cause problems which are quite tricky to spot

Re: how to parse json response from Solr Term Vector Component (5.3.0)

2015-09-15 Thread Chris Hostetter
: : how to parse json response from Solr Term Vector Component? : : I got following json structure from response when testing Solr 5.3.0 : tvComponent: ... : Is it correct ? Why solr makes the json response for term vector : information so difficult to extract from the client side ? why

how to parse json response from Solr Term Vector Component (5.3.0)

2015-09-09 Thread Jie Gao
Hi, how to parse json response from Solr Term Vector Component? I got following json structure from response when testing Solr 5.3.0 tvComponent: {'responseHeader': {'status': 0, 'QTime': 4}, 'response': {'docs': [{'resourcename': 'XXX.txt', 'id': 'XXX.txt', '_version_': 1511851008560463872

Re: Term Vector and Optimization

2015-06-24 Thread Upayavira
On Wed, Jun 24, 2015, at 08:41 PM, sudeepgarg wrote: Hi, can someone help me in this regard? What additional help do you need? Upayavira

Re: Term Vector and Optimization

2015-06-24 Thread Upayavira
have disable the term feature or not. And we are fine with this that data stay in index. We are just try to disable term vector feature in our environment as we don't require it any more. Is this correct what i understood please confirm this? I would expect that this will be absolutely fine

Re: Term Vector and Optimization

2015-06-24 Thread sudeepgarg
with this that data stay in index. We are just try to disable term vector feature in our environment as we don't require it any more. Is this correct what i understood please confirm this? -- View this message in context: http://lucene.472066.n3.nabble.com/Term-Vector-and-Optimization

Term Vector and Optimization

2015-06-24 Thread sudeep kumar
I want to know what is impact to disable term vector to existing production environment, I mean how new segments create and how old segments will merge with new segments because before this term vector was enable. I have one more question Is schema.xml file read during solr core optimization

Re: Term Vector and Optimization

2015-06-24 Thread Upayavira
On Wed, Jun 24, 2015, at 03:27 PM, Upayavira wrote: On Wed, Jun 24, 2015, at 02:50 PM, sudeep kumar wrote: I want to know what is impact to disable term vector to existing production environment, I mean how new segments create and how old segments will merge with new segments because

Re: Term Vector and Optimization

2015-06-24 Thread Upayavira
On Wed, Jun 24, 2015, at 02:50 PM, sudeep kumar wrote: I want to know what is impact to disable term vector to existing production environment, I mean how new segments create and how old segments will merge with new segments because before this term vector was enable. I have one more

Re: Term Vector and Optimization

2015-06-24 Thread sudeepgarg
with this that data stay in index. We are just try to disable term vector feature in our environment as we don't require it any more. -- View this message in context: http://lucene.472066.n3.nabble.com/Term-Vector-and-Optimization-tp4213647p4213657.html Sent from the Solr - User mailing list archive

Re: Term Vector and Optimization

2015-06-24 Thread sudeepgarg
Hi, can someone help me in this regard? Thanks, -- View this message in context: http://lucene.472066.n3.nabble.com/Term-Vector-and-Optimization-tp4213647p4213732.html Sent from the Solr - User mailing list archive at Nabble.com.

Is there a Field/FieldType property to enable storing of term vector payloads?

2014-03-21 Thread Daniel Jamrog
I see properties to enable term vectors, positions and offsets, but didn't find one for payloads? Did I just miss it? If not, is this something that may be added in the future? Thanks

Re: Is there a Field/FieldType property to enable storing of term vector payloads?

2014-03-21 Thread Doug Turnbull
Daniel, I had a similar issue. The option is not in the normal FieldType, so I had to create my own FieldType in a Solr plugin that enabled payloads in term vectors. This mostly involved extending TextField, copy pasting createField from FieldType (TextField's parent class) and adding the one line

Re: Is there a Field/FieldType property to enable storing of term vector payloads?

2014-03-21 Thread Daniel Jamrog
Doug, thanks for the quick reply! I have a separate question: The FieldType I was using when I ran into this happened to be a PreAnalyzedField. I tried to specify an alternate parser to be used instead of the default JsonPreAnalyzedParser. To do this, I added the parameter parserImpl to my

Term Vector Component Question

2013-11-27 Thread Jamie Johnson
I am interested in retrieving the tf for terms that matched the query, not all terms in the document. Is this possible? Looking at the example when I search for the word cable I get the response that is shown below, ideally I'd like to see only the tf for the word cable. Is this possible or

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,

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

Re: Term Vector Component Question

2013-11-27 Thread Jamie Johnson
. -- 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 terms that matched the query, not all terms in the document. Is this possible

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

Re: Term Vector Component Question

2013-11-27 Thread Jack Krupansky
There is an XML version of explain as well, if parsing the structured text is too difficult for your application. The point is that debug explain details precisely the term vector values for actual query terms. Don't let the debug moniker throw you - this parameter is simply giving you access

Re: Term Vector Component Question

2013-11-27 Thread Jamie Johnson
: There is an XML version of explain as well, if parsing the structured text is too difficult for your application. The point is that debug explain details precisely the term vector values for actual query terms. Don't let the debug moniker throw you - this parameter is simply giving you

Re: Term Vector Component Question

2013-11-27 Thread Jamie Johnson
...@basetechnology.comwrote: There is an XML version of explain as well, if parsing the structured text is too difficult for your application. The point is that debug explain details precisely the term vector values for actual query terms. Don't let the debug moniker throw you - this parameter is simply giving you

Re: Term Vector Component Question

2013-11-27 Thread Jack Krupansky
- 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 from the debug response, for instance I

Re: Term Vector Component Question

2013-11-27 Thread Jamie Johnson
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 idf, fieldnorm, timing information, etc. Again thanks. On Wed, Nov 27, 2013 at 11:49 AM

Re: Term Vector Component Question

2013-11-27 Thread Jamie Johnson
that matched. -- Jack Krupansky -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

Re: Term Vector Component Question

2013-11-27 Thread Erick Erickson
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 idf, fieldnorm, timing information, etc. Again thanks

Create term vector from text

2013-08-19 Thread Domma, Achim
Hi, the TermVectorComponent allows me to retrieve data about the terms of a document, including tf-idf. Is it possible to get this data for a text, but without storing it in SOLR? As far as I figured out, the AnalysisComponent comes close, but does not return the core specific frequencies.

Re: Create term vector from text

2013-08-19 Thread Jack Krupansky
@lucene.apache.org Subject: Create term vector from text Hi, the TermVectorComponent allows me to retrieve data about the terms of a document, including tf-idf. Is it possible to get this data for a text, but without storing it in SOLR? As far as I figured out, the AnalysisComponent comes close, but does

How to get Term Vector Information on Distributed Search

2013-05-07 Thread meghana
Hi, I am using distributed query to fetch records. Distributed Search Document on wiki says , Distributed Search support distributed query. but I m getting error while querying. Not sure if I am doing anything wrong. below is my Query to fetch Term Vector with Distributed Search. http

RE: How to get Term Vector Information on Distributed Search

2013-05-07 Thread Markus Jelsma
hi - this is a known issue: https://issues.apache.org/jira/browse/SOLR-4479 -Original message- From:meghana meghana.rav...@amultek.com Sent: Tue 07-May-2013 14:28 To: solr-user@lucene.apache.org Subject: How to get Term Vector Information on Distributed Search Hi, I am using

Empty term vector component result with Solr 4.2

2013-04-06 Thread Yakov Bezrukov
Hi all, I'm doing a test a migration from Solr 3.6.2 to Solr 4.2 and cannot make work the term vector component. Was not able to find changes in the TVC configuration in docs, so used approach, same as on my 3.6 server, where it works fine. Relevant field in schema.xml is configured like

Re: how to get term vector information of sepcific word/position in field

2013-03-24 Thread vrparekh
Thanks Chris, -- View this message in context: http://lucene.472066.n3.nabble.com/how-to-get-term-vector-information-of-sepcific-word-position-in-field-tp4047637p4050997.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: how to get term vector information of sepcific word/position in field

2013-03-22 Thread Chris Hostetter
: is there any way, if i can get term vector information of specific word : only, like i can pass the word, and it will just return term position and : frequency for that word only? : : and also if i can pass the position e.g. startPosition=5 and endPosition=10; : then it will return terms

Re: how to get term vector information of sepcific word/position in field

2013-03-18 Thread vrparekh
The requirement might seems weird, but the text field is big, and to get term vector information for 10 records in response will decrease the speed. and also i don't want term vector information of all the words. Is there any possible solution ? -- View this message in context: http

how to get term vector information of sepcific word/position in field

2013-03-15 Thread vrparekh
Hello, currently when we set qt=tvrhtv.all=true; it will return all the words which are there in text of field. is there any way, if i can get term vector information of specific word only, like i can pass the word, and it will just return term position and frequency for that word only

Term Vector information of only highlighting words

2013-03-05 Thread vrparekh
Hello, when i set term vector on, it will return information of all the words in document. i have highlighting on also. i want to get term vector information of only those words which are there in highlighting fragment. how to do that? -- View this message in context: http://lucene

Term Vector Query

2013-01-22 Thread Sam4875
Sam -- View this message in context: http://lucene.472066.n3.nabble.com/Term-Vector-Query-tp4035487.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: term vector parser in solr.NET

2011-09-25 Thread Mauricio Scheffer
wrote: hi, i was wondering if there is any method to get back the term vector list from solr through solr.NET? from the source code for SOLR.NET i couldn't notice any term vector parser in SOLR.NET . -- -JAME

term vector parser in solr.NET

2011-09-19 Thread jame vaalet
hi, i was wondering if there is any method to get back the term vector list from solr through solr.NET? from the source code for SOLR.NET i couldn't notice any term vector parser in SOLR.NET . -- -JAME

error when using the term vector component in solrCloud

2011-08-07 Thread yatir
IS the term vector component supported with solr cloud ? this works fine: http://scmb.nydc1.outbrain.com:8080/solr1/ENPwlMaster/select/?q=id:195652782fl=*,scoreqt=tv=truetv.fl=contenttv.tf=truedistrib=true reponse: result name=response numFound=1 start=0 maxScore=15.6275625docstr name=id195652782

Re: Term Vector Query on Single Document

2011-02-16 Thread Markus Jelsma
On Wednesday 16 February 2011 16:49:51 Tod wrote: I have a couple of semi-related questions regarding the use of the Term Vector Component: - Using curl is there a way to query a specific document (maybe using Tika when required?) to get a distribution of the terms it contains? No Tika

Calculate term vector

2009-12-21 Thread Licinio Fernández Maurelo
Hi folks, how can i get term vector from a custom solr query via http request? is this possible? -- Lici ~Java Developer~

RE: Calculate term vector

2009-12-21 Thread Ankit Bhatnagar
What version of Solr are you using? Ankit -Original Message- From: Licinio Fernández Maurelo [mailto:licinio.fernan...@gmail.com] Sent: Monday, December 21, 2009 1:40 PM To: solr-user@lucene.apache.org Subject: Calculate term vector Hi folks, how can i get term vector from a custom

Re: Calculate term vector

2009-12-21 Thread Grant Ingersoll
See http://wiki.apache.org/solr/TermVectorComponent On Dec 21, 2009, at 1:39 PM, Licinio Fernández Maurelo wrote: Hi folks, how can i get term vector from a custom solr query via http request? is this possible? -- Lici ~Java Developer~

Re: Term vector

2008-01-21 Thread Grant Ingersoll
://www.nabble.com/Term-vector-tp14990408p14990408.html Sent from the Solr - User mailing list archive at Nabble.com. -- Grant Ingersoll http://lucene.grantingersoll.com http://www.lucenebootcamp.com Lucene Helpful Hints: http://wiki.apache.org/lucene-java/BasicsOfPerformance http

Term vector

2008-01-20 Thread anuvenk
what are term vectors? How do they help with mlt? -- View this message in context: http://www.nabble.com/Term-vector-tp14990408p14990408.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Field Term vector

2007-04-11 Thread Ken Krugler
: What is Field Term Vector? how we can use this? I don't think anything in Solr uses Term Vector's out of hte box ... they are a low level Lucene concept that may be useful to you if you are writting a custo mRequestHandler and want access to them. They are also useful if you want to use

Re: Field Term vector

2007-04-10 Thread Chris Hostetter
: What is Field Term Vector? how we can use this? I don't think anything in Solr uses Term Vector's out of hte box ... they are a low level Lucene concept that may be useful to you if you are writting a custo mRequestHandler and want access to them. -Hoss

Field Term vector

2007-04-09 Thread Suresh Kannan
What is Field Term Vector? how we can use this? Suresh