Re: Difference Between Indexing and Reindexing

2013-04-04 Thread Furkan KAMACI
Hi Otis, then what is the difference between add and update? And how we update or add documents into Solr (I see that there is just one update handler)? 2013/4/4 Otis Gospodnetic otis.gospodne...@gmail.com I don't recall what Nutch does, so it's hard to tell. In Solr (Lucene, really), you

Re: Difference Between Indexing and Reindexing

2013-04-04 Thread Jack Krupansky
@lucene.apache.org Subject: Re: Difference Between Indexing and Reindexing Hi Otis, then what is the difference between add and update? And how we update or add documents into Solr (I see that there is just one update handler)? 2013/4/4 Otis Gospodnetic otis.gospodne...@gmail.com I don't recall what

Re: Difference Between Indexing and Reindexing

2013-04-04 Thread Furkan KAMACI
@lucene.apache.org Subject: Re: Difference Between Indexing and Reindexing Hi Otis, then what is the difference between add and update? And how we update or add documents into Solr (I see that there is just one update handler)? 2013/4/4 Otis Gospodnetic otis.gospodne...@gmail.com I don't recall

Re: Difference Between Indexing and Reindexing

2013-04-04 Thread Jack Krupansky
To: solr-user@lucene.apache.org Subject: Re: Difference Between Indexing and Reindexing Hi Otis, then what is the difference between add and update? And how we update or add documents into Solr (I see that there is just one update handler)? 2013/4/4 Otis Gospodnetic otis.gospodne...@gmail.com I

RE: Difference Between Indexing and Reindexing

2013-04-04 Thread Markus Jelsma
...@basetechnology.com Sent: Thu 04-Apr-2013 15:31 To: solr-user@lucene.apache.org Subject: Re: Difference Between Indexing and Reindexing That's a question for the Nutch email list. In Solr, reindexing simply means that you manually delete your full Solr index (or at least delete all documents using

Re: Difference Between Indexing and Reindexing

2013-04-04 Thread Alexandre Rafalovitch
On Thu, Apr 4, 2013 at 9:03 AM, Furkan KAMACI furkankam...@gmail.comwrote: I craw webages with Nutch and send them to Solr for indexing. There are two parameters to send data into Solr. One of them is -index and the other one is -reindex. I just want to learn what they do. Are you sure this

Re: Difference Between Indexing and Reindexing

2013-04-04 Thread Gora Mohanty
On 4 April 2013 18:33, Furkan KAMACI furkankam...@gmail.com wrote: I craw webages with Nutch and send them to Solr for indexing. There are two parameters to send data into Solr. One of them is -index and the other one is -reindex. I just want to learn what they do. [...] Which version of Nutch

Re: Difference Between Indexing and Reindexing

2013-04-04 Thread Furkan KAMACI
I use Nutch 2.1 and using that: bin/nutch solrindex http://localhost:8983/solr -index bin/nutch solrindex http://localhost:8983/solr -reindex 2013/4/4 Gora Mohanty g...@mimirtech.com On 4 April 2013 18:33, Furkan KAMACI furkankam...@gmail.com wrote: I craw webages with Nutch and send them

Re: Difference Between Indexing and Reindexing

2013-04-04 Thread Gora Mohanty
On 4 April 2013 19:29, Furkan KAMACI furkankam...@gmail.com wrote: I use Nutch 2.1 and using that: bin/nutch solrindex http://localhost:8983/solr -index bin/nutch solrindex http://localhost:8983/solr -reindex [...] Sorry, but are you sure that you are using 2.1. Here is what I get with:

Re: Difference Between Indexing and Reindexing

2013-04-04 Thread Gora Mohanty
On 4 April 2013 20:16, Gora Mohanty g...@mimirtech.com wrote: On 4 April 2013 19:29, Furkan KAMACI furkankam...@gmail.com wrote: I use Nutch 2.1 and using that: bin/nutch solrindex http://localhost:8983/solr -index bin/nutch solrindex http://localhost:8983/solr -reindex [...] Sorry, but

Re: Difference Between Indexing and Reindexing

2013-04-04 Thread Furkan KAMACI
It may be a deprecated usage(maybe not) but certainly can run -index and -reindex on Nutch 2.1. 2013/4/4 Gora Mohanty g...@mimirtech.com On 4 April 2013 20:16, Gora Mohanty g...@mimirtech.com wrote: On 4 April 2013 19:29, Furkan KAMACI furkankam...@gmail.com wrote: I use Nutch 2.1 and

Re: Difference Between Indexing and Reindexing

2013-04-04 Thread Jack Krupansky
: Difference Between Indexing and Reindexing On 4 April 2013 19:29, Furkan KAMACI furkankam...@gmail.com wrote: I use Nutch 2.1 and using that: bin/nutch solrindex http://localhost:8983/solr -index bin/nutch solrindex http://localhost:8983/solr -reindex [...] Sorry, but are you sure that you are using

Re: Difference Between Indexing and Reindexing

2013-04-03 Thread Otis Gospodnetic
I don't recall what Nutch does, so it's hard to tell. In Solr (Lucene, really), you can: * add documents * update documents * delete documents Currently, update is really a delete + readd under the hood. It's been like that for 13+ years, but this may change: