Hello, I have a simple question, is an instance of the QueryParser created for every single request and is that object thread safe?
I will try not to get into too much of the specifics but I have a custom QueryParser and Search Component. Within my query parser when it is instantiated, I execute a lucene search and use that docset to help build and filter my main query. In my search component later on, I might need to build another query with the query parser and use that same filter docset. I would rather just hold onto the docset and reuse it rather than re-execute the query. Thanks! Darin