Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. GET /_search
  2. {
  3. "query": {
  4. "bool": {
  5. "should": [
  6. {
  7. "constant_score": {
  8. "boost": 3,
  9. "query": { "match": { "fulltext": "cylinder" }}
  10. }
  11. },
  12. {
  13. "constant_score": {
  14. "boost": 2,
  15. "query": { "match": { "fulltext": "crankshaft" }}
  16. }
  17. },
  18. {
  19. "constant_score": {
  20. "query": { "match": { "fulltext": "engine" }}
  21. }
  22. }
  23. ]
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement