ElasticSearch.pm v0.37 released, with a small breaking change
Just released ElasticSearch.pm v 0.37 which has a small breaking change.
In version 0.36, $scrolled_search->next() returned the next $size results.  Now, by default it returns the next one result, which makes it easier to write:
     while ( my $result = $scroller->next ) {...}
                            
                        
Leave a comment