On 5/3/06, Kiran Joisher <[EMAIL PROTECTED]> wrote:
I m working on a project where I will use lucene to make a search engine on
a database. I am new to lucene. I wrote a test program which indexes a table
and searches the same.. but now I m stuck on how to update the index in case
a database change occurs.. I need some help on this topic...

Solr handles incremental updating:
 - overwriting documents that already exist in the collection
 - graceful migration from old IndexSearchers to new IndexSearchers
so that the changes are visible

Solr does not yet handle automatically grabbing stuff from a
database... you need to write something that grabs the changes and
then sends those changes to Solr (via XML over HTTP-POST)


-Yonik
http://incubator.apache.org/solr Solr, the open-source Lucene search server

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to