Re: How to re-index Solr get term frequency within documents

2013-07-03 Thread Tony Mullins
Hi Otis, I am quite new to Solr. And have looked at this link http://search-lucene.com/jd/solr/solr-dataimporthandler/org/apache/solr/handler/dataimport/SolrEntityProcessor.html; but could not figure out how to use it to re-index my all data in solr. Could you please explain in little detail

Re: How to re-index Solr get term frequency within documents

2013-07-03 Thread Otis Gospodnetic
Hi, Try this instead: http://wiki.apache.org/solr/DataImportHandler#SolrEntityProcessor Background info: https://issues.apache.org/jira/browse/SOLR-1499 Otis -- Solr ElasticSearch Support -- http://sematext.com/ Performance Monitoring -- http://sematext.com/spm On Wed, Jul 3, 2013 at 2:50

Re: How to re-index Solr get term frequency within documents

2013-07-02 Thread Tony Mullins
Sent: Monday, July 01, 2013 2:26 PM To: solr-user@lucene.apache.org Subject: Re: How to re-index Solr get term frequency within documents If all your fields are stored, you can do it with http://search-lucene.com/?q=**solrentityprocessorhttp://search-lucene.com/?q=solrentityprocessor Otherwise

Re: How to re-index Solr get term frequency within documents

2013-07-02 Thread Otis Gospodnetic
: Otis Gospodnetic Sent: Monday, July 01, 2013 2:26 PM To: solr-user@lucene.apache.org Subject: Re: How to re-index Solr get term frequency within documents If all your fields are stored, you can do it with http://search-lucene.com/?q=**solrentityprocessorhttp://search-lucene.com/?q

How to re-index Solr get term frequency within documents

2013-07-01 Thread Tony Mullins
Hi, I am using Solr 4.3.0. If I change my solr's schema.xml then do I need to re-index my solr ? And if yes , how to ? My 2nd question is I need to find the frequency of term per document in all documents of search result. My field is field name=CommentX type=text_general stored=true

Re: How to re-index Solr get term frequency within documents

2013-07-01 Thread Jack Krupansky
Subject: How to re-index Solr get term frequency within documents Hi, I am using Solr 4.3.0. If I change my solr's schema.xml then do I need to re-index my solr ? And if yes , how to ? My 2nd question is I need to find the frequency of term per document in all documents of search result. My

Re: How to re-index Solr get term frequency within documents

2013-07-01 Thread Tony Mullins
parameter. Sounds like you want termfreq: termfreq(field_arg,term) fl=id,a,b,c,termfreq(a,xyz) -- Jack Krupansky -Original Message- From: Tony Mullins Sent: Monday, July 01, 2013 10:47 AM To: solr-user@lucene.apache.org Subject: How to re-index Solr get term frequency within documents

Re: How to re-index Solr get term frequency within documents

2013-07-01 Thread Otis Gospodnetic
10:47 AM To: solr-user@lucene.apache.org Subject: How to re-index Solr get term frequency within documents Hi, I am using Solr 4.3.0. If I change my solr's schema.xml then do I need to re-index my solr ? And if yes , how to ? My 2nd question is I need to find the frequency of term per

Re: How to re-index Solr get term frequency within documents

2013-07-01 Thread Jack Krupansky
@lucene.apache.org Subject: Re: How to re-index Solr get term frequency within documents If all your fields are stored, you can do it with http://search-lucene.com/?q=solrentityprocessor Otherwise, just reindex the same way you indexed in the first place. *Always* be ready to reindex from scratch. Otis