Sorry to keep bothering you all. I'd like to create a 2nd index for my project for "tagging" items in the document set. This way, it would be significantly easier to manage the tagged documents (add/remove/mass delete) than to deal with them in the existing index (where I would have to re-build fields and make sure that everything is moved over and can't do a mass delete (indexWriter.DeleteAll())).
Is it possible to do this using a MultiSearcher? There would be a common Unique ID field in each index and in the additional database, or would I have to do 2 searches, (one from the main index, one from either the database or the 2nd index) and then loop through the results and pull out the tagged documents from there? Thanks in advance.
