We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have Category model
class Category include Mongoid::Document include Sunspot::Mongo field :name searchable do text :name end end
I have Category record with name 'Laundry'
I only get results when I do
s = Category.solr_search do fulltext "Laundry" end
Otherwise it returns empty array for "lau" "Lau" "laundry" etc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have Category model
I have Category record with name 'Laundry'
I only get results when I do
Otherwise it returns empty array for "lau" "Lau" "laundry" etc
The text was updated successfully, but these errors were encountered: