Re: filter search

2005-04-05 Thread Chris Hostetter
: : is it possible to filter the hits returned from a certain query?. for : example if I have a search like this: : Query searchQuery = queryParser.parse( query ); : Hits results = m_searcher.search( searchQuery ); : is there a way to use the results and find out how many of the return

Re: filter search

2005-04-04 Thread Otis Gospodnetic
Hi Omar, You could iterate through hits (results), pulling out a document at a time and checking the appropriate field (e.g. field.endsWithIgnoreCase(".com") ) Otis --- Omar Didi <[EMAIL PROTECTED]> wrote: > hi guys, > > is it possible to filter the hits returned from a certain query?. for > ex