Guest User

Untitled

a guest
Aug 14th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $params = [
  2. 'index' => 'aksjeregisteret2017',
  3. 'type' => '_doc',
  4. 'field' => ['Company']
  5. ];
  6.  
  7. $response = $es->get($params);
  8.  
  9. $params = [
  10. 'index' => 'aksjeregisteret2017',
  11. 'type' => '_doc',
  12.  
  13. ];
  14. $params['body']['_source' ]= 'Company';
  15. $params['body']['query']['match_all']['boost'] = 1.2;
  16. $response = $es->search($params);
Add Comment
Please, Sign In to add comment