Skip to content

Instantly share code, notes, and snippets.

@swaathi
Last active September 16, 2015 12:34
Show Gist options
  • Save swaathi/02e4a3b6ff7b5f7e9adb to your computer and use it in GitHub Desktop.
Save swaathi/02e4a3b6ff7b5f7e9adb to your computer and use it in GitHub Desktop.
Elasticsearch with Searchkick gem
def search
@songs = Song.search(params[:query])
if request.xhr?
render :json => @songs.to_json
else
render :index
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment