Skip to content

Instantly share code, notes, and snippets.

@jraczak
Created March 26, 2015 22:26
Show Gist options
  • Save jraczak/ba92af82696097727799 to your computer and use it in GitHub Desktop.
Save jraczak/ba92af82696097727799 to your computer and use it in GitHub Desktop.
def self.search(query)
__elasticsearch__.search(
{
query: {
multi_match: {
query: query,
fields: ['name^5', 'properties^3', 'tips', 'venue_subcategory'],
}
}
}
)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment