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 AM

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

2013-07-02 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 t

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

2013-07-02 Thread Otis Gospodnetic
indexing from scratch from the >> original data sources. >> >> -- Jack Krupansky >> >> -Original Message----- From: Otis Gospodnetic >> Sent: Monday, July 01, 2013 2:26 PM >> To: solr-user@lucene.apache.org >> Subject: Re: How to re-index S

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

2013-07-01 Thread Tony Mullins
; -Original Message- From: 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-

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

2013-07-01 Thread Jack Krupansky
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=solrentityprocessor Otherwise, just reindex the same way you indexed in the first place. *Always* be ready to reindex from

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

2013-07-01 Thread Otis Gospodnetic
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 -- Solr & ElasticSearch Support -- http://sematext.com/ Performance Monitoring --

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

2013-07-01 Thread Tony Mullins
Thanks Jack , it worked. Could you please provide some info on how to re-index existing data in Solr, after changing the schema.xml ? Thanks, Tony On Mon, Jul 1, 2013 at 8:21 PM, Jack Krupansky wrote: > You can write any function query in the field list of the "fl" parameter. > Sounds like you

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

2013-07-01 Thread Jack Krupansky
You can write any function query in the field list of the "fl" 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.o