01.12.2012 Views

ElasticSearch - Milton Keynes Perl Mongers

ElasticSearch - Milton Keynes Perl Mongers

ElasticSearch - Milton Keynes Perl Mongers

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Querying with a string and a facet<br />

my $data = $es->search(<br />

index => 'mythtv',<br />

size => 5,<br />

query => {<br />

bool => {<br />

must => [<br />

{ query_string => {<br />

query => "Doctor Who",<br />

fields => [ 'title^3', 'description' ],<br />

use_dis_max => 1,<br />

}, },<br />

{ term => { callsign => "BBC THREE", } }<br />

],<br />

}<br />

},<br />

facets => {<br />

title_facet => { terms => { field => 'title_term', size => 5, } }<br />

}<br />

);

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!