Re: What are stopwords and protwords ???

2008-05-21 Thread Grant Ingersoll
Stopwords are commonly occurring words that don't add _much_ value to search, such as the, an, a and are usually removed during analysis. Protwords (protected words) are words that would be stemmed by the English porter stemmer that you do not want to be stemmed. In the end, removing

Re: What are stopwords and protwords ???

2008-05-21 Thread Akeel
Thank you very much for such a detailed reply. can you please tell me how can i interact with solr from within my Java/JSP application ? I mean how to query the solr running at localhost and getting results back in the application. Do i have to change something there in solrconfig.xml ? Please

Re: What are stopwords and protwords ???

2008-05-21 Thread Shalin Shekhar Mangar
Hi Akeel, Take a look at SolrJ which is a Java client library for Solr. It is packaged with the Solr nightly binary downloads. This can be used by your Java/JSP application to add documents or query Solr. No changes to any config files is needed. On Wed, May 21, 2008 at 5:15 PM, Akeel [EMAIL

Re: What are stopwords and protwords ???

2008-05-21 Thread Shalin Shekhar Mangar
Here's the link to wiki documentation on SolrJ http://wiki.apache.org/solr/Solrj On Wed, May 21, 2008 at 11:09 PM, Shalin Shekhar Mangar [EMAIL PROTECTED] wrote: Hi Akeel, Take a look at SolrJ which is a Java client library for Solr. It is packaged with the Solr nightly binary downloads.

Re: What are stopwords and protwords ???

2008-05-21 Thread Akeel
thanks everyone On Thu, May 22, 2008 at 7:18 AM, Grant Ingersoll [EMAIL PROTECTED] wrote: See http://lucene.apache.org/solr/tutorial.html. You can also see the wiki for a whole bunch of docs, including links to tutorials, etc. Also, just for future reference, please separate out questions