Skip to content

Instantly share code, notes, and snippets.

@palin
Created May 17, 2018 08:20
Show Gist options
  • Select an option

  • Save palin/237173082b0da78827be009068757866 to your computer and use it in GitHub Desktop.

Select an option

Save palin/237173082b0da78827be009068757866 to your computer and use it in GitHub Desktop.
@search_term = "laptop"
filters =
[
{
:key=>"product_group_id",
:value=>[
24757869,
24757869,
24757869,
21990772,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869
]
}
]
$> Torque.ask('ask_an_owner_questions', @search_term, filters: filters)
=>
curl -X GET 'http: //localhost:9200/torque-ask_an_owner_questions/_search?size=32000&pretty' -d '{ "query": { "bool": {
"must": [
{
"fuzzy_like_this_field": {
"searchable.value": {
"like_text": "laptop",
"max_query_terms": 6,
"min_similarity": 0.8
}
}
}
]
}
},
"filter": {
"terms": {
"product_group_id": [
24757869,
24757869,
24757869,
21990772,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869,
24757869
]
}
},
"highlight": {
"fields": {
"searchable.value": {
"fragment_size": 0
}
}
}
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment