0
votes
1answer
30 views

How to return search results with Sunspot and Solr in rails app?

I am having some trouble with Sunspot and Solr. When I pass a parameter, I'm getting no results. I've included in the comments at 2 points in the code. I've confirmed that there is also data in ...
0
votes
1answer
35 views

Sunspot solr search works only from one page?

I am following the instructions mentioned here Rails 3: sunspot solr : adding search ability for every page However it does not seem to work for me. I'm trying to implement a twitter like search ...
-4
votes
1answer
95 views

Adding filters with checkboxes and accessing particular thing item exist in row [closed]

please guide me how to add filters using check-boxes when we use sunspot search in Rails? - if @search.facet(:amenities) %h3 Amenities - @search.facet(:amenities).rows.each do |c| - unless ...
1
vote
1answer
47 views

Mapping search results in rails when working with Association

I have a two models as: Product { has_may variants} Variant {belongs to product} I used Sunspot search, and in result I retrieved selected variants, now I want this result as my search result ...
6
votes
2answers
187 views

rails solr search limit total search results / get fixed number of results

I'm trying to perform a search, order the results randomly, and only return a number of results, not all matches. Something like limit(2) I've tried using the Solr param 'rows' but that doesn't seem ...
3
votes
1answer
353 views

Sunspot Solr search parameter “with” not working with strings

I'm developing a Ruby on Rails application using Sunspot Solr as an indexer. The thing is i try to use the parameter of the search with :, using strings and it doesn't seem to work. If i pass an int ...
1
vote
1answer
652 views

Sunspot Solr, Rails and Ordering

I have a project model in my rails 3.1 application and I want to use Solr to run a search on it. I defined the search like this: searchable do text :nr, :boost => 5 # nr is integer ...
1
vote
1answer
205 views

Sunspot search order_by error - target column is not ordered

I am implementing a pretty basic Sunspot solr search in Ruby on Rails 3.1. I call search on my Idea model with an order_by argument on a integer column but the result set is not ordered. Search ...