Will the final version 1.3 include an application that does the incremental updates automatically?
-----Original Message----- From: Doug Cutting [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 25, 2003 5:01 AM To: Lucene Users List Subject: Re: Lucene refresh index function (incremental indexing). Tun Lin wrote: > These are the steps I took: > > 1) I compile all the files in a particular directory using the command: > java org.apache.lucene.demo.IndexHTML -create -index c:\\index .. > , putting all the indexed files in c:\\index. > 2) Everytime, I added an additional file in that directory. I need to > reindex/recompile that directory to generate the indexes again. As the > directory gets larger, the indexing takes a longer time. > > My question is how do I generate the indexes automatically everytime a > new document is added in that directory without me recompiling everytime manually? To update, try removing the '-create' from the command line. The demo code supports incremental updates. It will re-scan the directory and figure out which files have changed, what new files have appeared and which previously existing files have been removed. Doug --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
