Skip to content

Instantly share code, notes, and snippets.

@rquast
Last active July 23, 2017 00:11
Show Gist options
  • Select an option

  • Save rquast/842a6ccdc9f88b553b2a26caebdbe7ea to your computer and use it in GitHub Desktop.

Select an option

Save rquast/842a6ccdc9f88b553b2a26caebdbe7ea to your computer and use it in GitHub Desktop.
<?php
$query = [
'index' => $this->subdomain,
'type' => ['topics', 'documents'],
'body' => [
'query' => [
'multi_match' => [
'query' => $queryParams['content'],
'fields' => ['name^5', 'description^4', 'h*^3', 'content^2', 'pinned', 'related'],
'fuzziness' => 'AUTO',
'prefix_length' => 2
]
],
'highlight' => [
'fields' => [
'*' => [
'force_source' => true,
'require_field_match' => false
]
]
]
]
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment