My index has the following fields :
ID (type long, indexed, stored, not analyzed), Contents (String, not indexed, not analyzed, stored) and Tags (String, indexed, analyzed, stored).
Need to update the Contents ...
Heres my issue, I perform add() to add documents to my index and then I close() it. That works great!
Now I have a new requirement and every time I save something ...
We have home grown search service based on Lucene. One particular question I'm faced some time ago was getting number of pending changes on IndexWriter. If the pending changes counter is ...
I am using Lucene 2.9.2 and I create an IndexWriter instance for each modification request, so the writer object get closed after each modification.
I have one single facade class that synchronizes ...