Hi, I have a Lucene index that has the fields label and abstract.
I want to do is first do a search by label field, for this i use: TopScoreDocCollector collector = TopScoreDocCollector.create(MAX_HITS, true > ); > searcher.search(q, collector); > ScoreDoc[] hits = collector.topDocs().scoreDocs; After the results of the first survey, I want to do a search in the abstract field only in results obtained from the first survey. How i do this? Thanks in advance. David