Re: Combine data from index and db before sorting and pagination

2010-09-09 Thread Erick Erickson
You can't avoid updating the whole document. You must delete the original document and re-add it. Fortunately, this is pretty inexpensive. Update does this under the covers... Best Erick On Thu, Sep 9, 2010 at 12:15 AM, fulin tang wrote: > That is exactly what I am looking for now ! > > Our ma

notice: index corruption on Solr/Lucene trunk/3.x branch

2010-09-09 Thread Robert Muir
If you are using SimpleFSDirectory (either explicitly or via FSDirectory.open on Windows) with Solr/Lucene trunk or 3.x branch since July 30, you might have index corruption and you should svn up and rebuild. More details available here: https://issues.apache.org/jira/browse/LUCENE-2637

Re: Can we just update one field of a document in a lucene index, and leave other fields along?

2010-09-09 Thread findbestopensource
Hi fulin, It is not possible. You need to add / update as a document. Even if you modify a single field, you need to add all the fields. Update is nothing but Delete and Add operation. If you don't have the information of rest of the fields then you may need to search and retreive the document, m