On Thu, 2007-01-11 at 10:19 -0600, Iris Soto wrote: > Hello everybody, > I want update a specific field in a document, but i don't find how do it > in the documentation of Solr. > Is that posible?, I need to index only a field for a document, Do i have > to index all the document for this? > The problem is that i have to transform a bizdata object to a file > content xml in java, i should to build all the document xml step by > step, field by field, retrieving all the bizdata of database to be > passed to Solr. >
On Thu, 2007-01-11 at 06:43 -0500, Erik Hatcher wrote: > In Lucene to update a document the operation is really a delete > followed by an add. You will need to add the complete document as > there is no such "update only a field" semantics in Lucene. This is from a thread in the dev list. So no it is not possible to just update one field. HTH salu2 > Thanks in advance. >