The interactive file manager requires Javascript. Please enable it or use sftp or scp.
You may still browse the files here.
| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 8.1 source code.tar.gz | 2021-09-01 | 82.5 kB | |
| 8.1 source code.zip | 2021-09-01 | 112.1 kB | |
| README.md | 2021-09-01 | 543 Bytes | |
| Totals: 3 Items | 195.2 kB | 0 | |
- Adds documentation for
es-aggregate.plandApp::ElasticSearch::Utilities::Query - Adds tests for
App::ElasticSearch::Utilities::Query - Fixes the handling of
minimum_should_matchparameter.
This code now does the right thing:
:::perl
my $q = App::ElasticSearch::Utilities::Query->new();
$q->add_bool( should => { term => { foo => 'bar' } });
$q->add_bool( should => { term => { bar => 'baz' } });
$q->minimum_should_match(1);
Tests in place to make sure it does in the future too!