# Get the total hits my $count = $hits->total_hits; # Get the first 10 records $hits->seek(0, 10); # Generate previews $hits->create_excerpts(highlighter => $highlighter); while (my $result = $hits->fetch_hit_hashref) { … }