Von: Ahmet Arslan <iori...@yahoo.com> An: solr-user@lucene.apache.org Datum: 29.08.2012 10:50 Betreff: Re: Antwort: Re: refiltering search results
Thanks for the answer. My next question is how can i filter the result or how to replace the old ResponseBuilder Result with a new one? --- On Wed, 8/29/12, johannes.schwendin...@blum.com <johannes.schwendin...@blum.com> wrote: > From: johannes.schwendin...@blum.com <johannes.schwendin...@blum.com> > Subject: Antwort: Re: refiltering search results > To: solr-user@lucene.apache.org > Date: Wednesday, August 29, 2012, 8:22 AM > The main idea is to filter results as > much as possible with solr an then > check this result again. > To do this I have to read some information from some fields > of the > documents in the result. > At the moment I am trying to do this in the process method > of a Search > Component. But I even dont know > how to get access to the search results or the index Fields > of the > documents. > I have thought of ResponseBuilder.getResults() but after I > have the > DocListandSet Object I get stuck. You can read information from some fields using DocListandSet with org.apache.solr.util.SolrPluginUtils#docListToSolrDocumentList method.