Guest User

Untitled

a guest
Jan 19th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. search news {
  2. document news {
  3. field title type string {
  4. indexing: summary | index
  5. }
  6. field entities type array<string> {
  7. indexing: summary | index
  8. match: word
  9. }
  10. }
  11. rank-profile entity-ranking {
  12. first-phase {
  13. expression: nativeRank(title) + matches(entities)
  14. }
  15. }
  16.  
  17. select * from sources * where rank(title contains "oops" or title
  18. contains "donald" or title contains "trump", entities contains "Donald Trump Jr.");
Add Comment
Please, Sign In to add comment