0
votes
1answer
73 views

how to search has_many relation field as criteria sunspot rails

i have a Project Model and a ProjectAttribute Model that basically have 3 fields: name, value, project_id, used to store key-value records about Project, i've tried the approach below but without any ...
0
votes
1answer
104 views

Matching substrings in fulltext search not working

In my rails application, i'm using solr search. Substring matching working fine on local server but it is matching full words on my deployment server. searchable block searchable do text ...
0
votes
1answer
51 views

Sunspot failing to index an integer belongs_to id field

In the examples for sunspot sunspot.github.com, a belongs_to :blog association is indexed inside a searchable block with integer :blog_id. Later, the search can be constrained to a particular blog ...
0
votes
0answers
66 views

Ordering the search result - sunspot rails

I have two models, an School model, a Price model. A School has one price. Here is my School-controller, I eager load the price model with school-model: def index @search = School.search(:include ...
1
vote
1answer
266 views

Sorting the result - sunspot rails

I have two models, School model and Price model. Every school has a price. Right now I get back the result I want, but I like to implement a sorting function that sorts the highest price for a school ...
0
votes
1answer
42 views

Sunspot model assocation

I have two models, an School model and Price model. Every school has a price. I would like to return in the search result school with its prices. I am using rails and sunspot. School-controller: ...
0
votes
2answers
150 views

sunspot_solr error on heroku?

I'm using 'sunspot_rails', '~> 2.0.0.pre.120415' for Solr search in my rails app and deploy it on heroku (two separate application). It's working fine on one application but throw error on other. ...
1
vote
1answer
31 views

how to use sunsupot-rails with rails 2.3.14

i cloned the project that consists of rails 2.3.14, and sunspot-rails 1.2.1 how can i configure sunspot for this project?any help Regards Ateq
0
votes
1answer
84 views

Sunspot fulltext search - showing search parameter

I would like to show the search parameter of a search object. I using rails and sunspot. Lets say I have this book application where store a bunch of books and whould like to search the book by them ...
5
votes
2answers
450 views

Sunspot Solr Autocomplete not working Ruby on Rails 3.2.3

I need helping getting Autocomplete working on my Solr Search bar. Am, using this https://github.com/xponrails/sunspot_autocomplete Followed the steps & it doesn't work. I get stuck at my search ...
0
votes
1answer
159 views

Sunspot scoped queries not working

I'm implementing a fulltext search using Sunspot with scoped queries, but it's not working. When I remove the 'with' queries and search, it works, but when I add the queries in it does not. I've ...
0
votes
2answers
114 views

No Errors but no speed increase using sunspot gems

I ran speed tests comparing the results between the traditional Post.all(...) and Sunspot's Post.search(...) against a table with about 3000 records. In both cases, it takes 12 seconds to load. ...
0
votes
1answer
64 views

Possible to order search results using current_user

I'm trying to order search results using an equation that uses Products and User has inputs. In other words, I have an equation that uses data from both Products and current_user. I want to be able to ...
1
vote
1answer
293 views

Searching with Sunspot returns all results in db

Inside StreamPage i have defined this code for searching searchable do text :html, :stored => true, :boost => 2 integer :stream_id end I have 44 record and used reindex on this ...
2
votes
1answer
1k views

Sunspot Index Only When Searchable Fields Change

We are using sunspot for search in our latest project. We also use devise and are indexing our user model as follows: searchable do text :fname text :lname text :email text :description ...
2
votes
1answer
958 views

Sunspot `LIKE` query

I'm using sunspot. How can I run a LIKE query (LIKE %q%)? I would like to do something like this: @search = Sunspot.search(User) do |q| q.text_fields { with(:company_name).like(params[:q]) } ...
1
vote
2answers
1k views

Sunspot Solr specify offset and limit

I am aware of how to paginate a solr search via the sunspot gem. But I would like to specify the exact start row and maximum rows to fetch. For example, something like: Post.search do rows(:offset ...