Re: What is the best way to modify a Document object

2009-03-17 Thread Simon Willnauer
Hi Paul, If you do not store all the data inside lucene you have to get you updated data from you spreadsheet again. Even if you would store all the data you would have to update the document by creating a new one and adding it to the index using updateDocument(). You can not update just one single

What is the best way to modify a Document object

2009-03-17 Thread Paul Taylor
I am using lucene to index rows in a spreadsheet , each row is a Document, and the document indexes 10 fields from the row plus the row number used to relate thethe Document to the row number So when someone modifies one of the 10 fields I am interested in a row I have to update the document wi