On Sun, Nov 23, 2003 at 12:45:23PM -0800, John Angel wrote:
> Is it possible to group results by site like on Google (to display only 2
> hits from the same site, not all of them)?
Did I already respond to this?
You would have to post-process; Need to think about what to do if
showing a page of results at a time -- you might come up short.
Fake code:
my %seen;
while ( my $result = next_result() ) {
my $uri = URI->new( $result->swishdocpath );
next if $seen{ $uri->host }++ == 2;
show_result( $result );
}
--
Bill Moseley
moseley@hank.org
Received on Tue Nov 25 21:25:00 2003