Guest User

Untitled

a guest
Jul 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1.  
  2. curl -XPUT localhost:9200/_percolator/documents/myfilter -d '{
  3. "title": "cisco",
  4. "query": {
  5. "query_string": {
  6. "query": "cisco"
  7. }
  8. }
  9. }'
  10.  
  11. echo
  12. echo "Adding a query fails"
  13. echo
  14.  
  15. curl -XGET localhost:9200/documents/document/_percolate -d '{
  16. doc: {text: "cisco systems spain"},
  17. query: {term: {title: "cisco"}}
  18. }'
  19.  
  20.  
  21. echo
  22. echo "But a vanilla percolate works all right"
  23. echo
  24.  
  25.  
  26. curl -XGET localhost:9200/documents/document/_percolate -d '{
  27. doc: {text: "cisco systems spain"}
  28. }'
Add Comment
Please, Sign In to add comment