-
-
Save itsmikeq/df2b21d22f1cce9c05142da3fdb1e723 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "bundler/inline" | |
gemfile do | |
source "https://rubygems.org" | |
gem "activerecord", require: "active_record" | |
gem "activejob", require: "active_job" | |
gem "sqlite3" | |
gem "searchkick", git: "https://github.com/ankane/searchkick.git" | |
end | |
puts "Searchkick version: #{Searchkick::VERSION}" | |
puts "Elasticsearch version: #{Searchkick.server_version}" | |
ActiveRecord::Base.establish_connection adapter: "sqlite3", database: ":memory:" | |
ActiveJob::Base.queue_adapter = :inline | |
ActiveRecord::Migration.create_table :products do |t| | |
t.string :name | |
end | |
class Product < ActiveRecord::Base | |
searchkick | |
end | |
Product.reindex | |
Product.create!(name: "Test") | |
Product.search_index.refresh | |
p Product.search("test", fields: [:name]).response |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment