I just want to know if I am on the right track with how I should architect my Lucene context in my application:
- Create a singleton class that will create an instance of the writer.
- Construct a reader each time the index needs to be read.
- Check the reader.IsCurrent() to determine if there are updates. 3a. If there are updates get the reader from the IndexWriter to use NRT.
- Commit any changes with regards to some threshold and reset the reader.
Let me know if I am on the right track. There is so much information about how to read and write, but not enough about using NRT and when to make commits properly.