When my collection of files is updated then I want to search the newest data...
Like windows Advance search option.
|
When my collection of files is updated then I want to search the newest data... Like windows Advance search option. |
||||
|
|
|
From the Lucene FAQ:
Admittedly that's a reference to the Java version, but I'd expect the .NET version to work the same way. |
|||
|
|
|
Yes, you can search and index at the same time. The only thing you need to consider is that when you open your |
|||||||
|
|
The book, "Lucene in Action, Second edition" has a section on near real-time searching. Basically, you get the IndexReader by calling the IndexWriter.GetReader() method and save it. When starting a search, call the IndexWriter.GetReader() and compare the returned reader with the saved value. If it is the same, just use the existing reader. Multiple threads can share the same reader. If it is different, close the old reader and save the new one. Use the saved value for the search. Behind the scene, the new reader includes all the pending (uncommitted) documents in the index. Pending changes are flushed to disk (or RamDirectory), but not committed. |
|||
|
|