Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Can Lucene do a “search within search”, so that the second search is constrained by the results of the first query?

0
Posted

Can Lucene do a “search within search”, so that the second search is constrained by the results of the first query?

0

Yes. There are two primary options: • Use QueryFilter with the previous query as the filter. (you can search the mailing list archives for QueryFilter and Doug Cutting’s recommendations against using it for this purpose) • Combine the previous query with the current query using BooleanQuery, using the previous query as required. The BooleanQuery approach is the recommended one.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123