Sunspot Rails Plugin

learn more… | top users | synonyms

2
votes
2answers
248 views

Disable Solr during database rebuild

I am working on a rails project that involves the solr sunspot gem. I left the default behavior to auto update the index on model saves, but I was wondering if there was a way to temporarily disable ...
1
vote
0answers
11 views

Sunspot Solr partial search working in development but not in production after deploying

I am using sunspot solr for free text searching. I am trying to search trader from trader model. Here is the searchable block searchable do text :name text :postcode text :phone text ...
0
votes
0answers
43 views

rake db:seed error for Rails app using MongoDB, sunspot_solr

I am working on a Ruby on Rails application that uses MongoDB, and I have implemented basic Sunspot functionality. Here is some information about my environment Rails 3.2.11 Mongo 2.4.3 Sunspot ...
3
votes
1answer
254 views

Named scope in Sunspot search in rails 3

i am using the Sunspot search from multiple models which are tagged under a name. Sunspot.search(Article,Blogpost) do with :tag_ids, params[:id] end How to apply named_scoped like recent ...
0
votes
2answers
378 views

autocomplete in Solr and sunspot

I'm building a website with RoR and I use Sunspot and the solr Search Engine. I needed to use autocomplete functionality but I couldn't. I knew that Solr has a new thing called suggester but I don't ...
1
vote
1answer
653 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 ...
0
votes
1answer
24 views

Sunspor Solr in production

I saw this question Setup sunspot solr with rails in production environment. But I see my output: bundle exec sunspot-solr start ...sunspot_solr is not part of the bundle. Add it to Gemfile. I ...
0
votes
1answer
32 views

Rails Sunspot Solr data source

Thank you in advance for bearing with me. I am new to Solr and looking to integrate into Rails. Although Postgres can text search, Solr seems to be faster.. I understand the modifications that need ...
1
vote
0answers
34 views

Conditional indexing in rails sunspot

I am well versed with Solr and have used it previously using DIH. In the current application that I am working on my Solr document would consist of fields from 3 tables (because of RDBMS design of the ...
2
votes
0answers
105 views

rake sunspot:solr:reindex not working in Rails 4 app with multiple engines

I have rails 4 beta1 application with multiple engines. I'm installed sunspot_rails gem /2.0.0.pre.130115/ in my host application. Most of my models lived in engine1. I used them other engines. After ...
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
0answers
24 views

Appending to URL when submitting a form containing select/search fields

I am trying to sort/search a page using sunspot. However , I am not able to append the params . Please find the code below for clarification :- In controller - @search = Product.solr_search do ...
0
votes
1answer
28 views

How to search table associations using Sunspot/Solr

I am very new to Sunspot/Solr and I am facing problems in getting a fulltext search to work on my website. Please find the code below: /models/product.rb attr_accessible :category_id, :title, ...
0
votes
0answers
9 views

How to fetch only required fields using sunspot solr

I want to fetch only few fields from database as result of sunspot solr instead of all fields as my object contains a lots of fields. I tried using the following code. But when i do search.results it ...
0
votes
1answer
35 views

Sunspot - search.results throws undefined method `match' for nil:NilClass

I an using Sunspot and have the following code search = UserSearchKeywords.search do fulltext "#{params[:search_keyword]}" adjust_solr_params do |params| params[:fl] = "user_profile_id" end ...
0
votes
1answer
58 views

Sunspot search has_one association, other model has no foreign key

I'm using Sunspot Solr to search events and each event has a group_id that refers to a Group object (multiple events can have the same group). I want to find the right events if the user searches the ...
0
votes
1answer
36 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 ...
0
votes
1answer
17 views

Trying to implement facets on object type using sunspot on Rails

My basic goal is to create a facet based on the returned object type, not any specific field of the various objects. I have a search in my controller that returns multiple types of objects. It looks ...
1
vote
1answer
71 views

SystemStackError (stack level too deep) in sunspot gem

I know this is the hardest error to trace. This is what happens: I am doing a request involving sunspot search. For all requests that return reasonable solr response size, everything works fine. For a ...
3
votes
1answer
162 views

all time data without setting facet.date.start to a random past date

I use the following query to get time-series data of Posts. q=*:*&facet=true&facet.date=created_at_d&start=0 &f.created_at_d.facet.date.start=2009-06-20T14:05:28Z ...
1
vote
2answers
96 views

Sunspot - Searching in multiple date ranges

Here's my problem, I'll try to be concise. I have a model Course that has_many Planning. A Planning has a start_date and an end_date. I want to retrieve (with sunspot) all the Courses that have a ...
0
votes
1answer
6k views

SocketError (getaddrinfo: Name or service not known) - Sunspot/Solr Rails development

I have had lots of trouble with deploying my rails 3.0.10 application to Ubuntu 10.04 server with Passenger, Capistrano, nginx and MySQL (and even more trouble with apache2). After downgrading rake to ...
1
vote
1answer
49 views

Don't split on underscore with solr.StandardTokenizerFactory

I'm using solr, I'm using StandardTokenizerFactory in the text field but I don't want to split on the underscore. Do I have to use another toknizer like PatternTokenizerFactory or I can do this with ...
0
votes
1answer
88 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
62 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
2answers
128 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. ...
0
votes
1answer
26 views

Dynamic Ordering in solr result using Sunspot

I want to implement dynamic ordering in my solr search. For eg: if i am selecting the country as India, the members from India has to come in top of the result and members from other countries has ...
1
vote
1answer
237 views

Rails Sunspot search for items tagged with the tag

I am working in rails 3 . IN one of my model , i have acts_as_taggable_on :hashtags and for indexing i have searchable :auto_index => false do text :tags do ...
0
votes
0answers
23 views

When does Sunspot perform a commit to SOLR?

I have a background rails app with 64 instances using Sunspot and talking to a SOLR index with a few thousand items. The load on the SOLR box is high and submissions that should take a second or so ...
0
votes
1answer
146 views

Searching String Fields Using Sunspot and Rails

My team is attempting to implement Solr and Sunspot-Rails as a search provider for our application. Our story requires that certain string fields be searched in addition to the text fields. I have ...
1
vote
1answer
44 views

Sunspot facet option for an array-type attribute

I have researched on this question but found nothing close. Thats why I decide to ask. Stackoverflow has been a tremendous help for me. I have a jobs table with one attribute is location. Each ...
0
votes
1answer
47 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
110 views

Sunspot rails search, deny creating facets by condition

I use sunspot_rails gem in full text searching in Ruby on Rails, I added boolean field ('show_facet') to my model Product, and to solr index Then I want to do next: if 'show_facet' == true then ...
0
votes
0answers
34 views

How to search sunspot rails for empty associations

Before, we were able to successfully find 'roots' in a tree by checking for an empty previous_id: Phrase.search do with :previous_id, nil end.results Now we successfully changed the model from ...
0
votes
1answer
28 views

sunspot searchable include not loading has_and_belongs_to_many association

in the following Sunspot Rails scenario the has_and_belongs_to_many association does not get loaded despite of the include directive: has_and_belongs_to_many :predecessors, :join_table => ...
1
vote
1answer
65 views

sunspot searching

I know I had this search function working only a moment ago but have been redoing my search and navbar with bootstrap and now it looks good but the search function is not working!! I think it's ...
0
votes
1answer
39 views

Searching for a similar phrase on a RoR application

I am a beginner to Rails and I am using Sunspot for implementing search functionality. I want to search for patients names. Up to now im searching using the fulltext method and it is working. However ...
-4
votes
1answer
96 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
votes
1answer
127 views

Rails Sunspot Solr search is not working when there is less than 3 chars

When I search for "beer" then I got results, but when I search for "bee" i am not getting any results. I can not search for any word which is shorter than 4 chars. Is there a way to make this ...
0
votes
1answer
52 views

Can I use “-” in FQs using sunspot gem

I've inherited a solr installation that doesn't really work for our data. Before re-building, we want to roll out a simple search: filtering on any of our product inventory with size 8, shoe size 9. ...
0
votes
2answers
177 views

Search using Sunspot:solr

I have two models, named as Products and Variants, in which Variant model have association with Products as a Product have many Variants. Variant model have field named as "available_on" ... I want ...
0
votes
1answer
57 views

How do you monitor a solr server with god, instead of respawning bundle sunspot-solr start

The issue is that the command I use to start sunspot, bundle exec sunspot-solr start, itself spawns a solr server, which is the actual process that needs to be monitored, not the original command. If ...
1
vote
1answer
240 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
0answers
61 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
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 ...
0
votes
1answer
40 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: ...
2
votes
1answer
73 views

Solr+Sunspot: Having different boost on tags of a record — possible?

I have a model, say Post. It has tags. Each of the tags has a weight that should be reflected in search. Can I somehow store these tags and boost each of them with its weight? Example: Post title is ...
0
votes
0answers
98 views

Running multiple instances of Sunspot solr server for running cucumber tests using parallel_tests gem

I am using parallel_tests gem for running my cucumber features in parallel. While i am trying to run the cukes, i am getting Sunspot::Solr::Server::AlreadyRunningError but the process is ...
0
votes
0answers
36 views

how to retain sunspot auto complete field value after performed search

I have used sunspot autocomplete in the text field and select tag for sunspot search In the view file <%= text_field_with_auto_complete :license,:holder,{:size => 20,:onkeypress => ...
0
votes
1answer
46 views

sunspot_rails gem

Currently I'm migrating search logic to sunspot search engine , I have a query how to implement search in the polymorphic association . This is the model content Class Vendor < ActiveRecord::Base ...

1 2 3 4 5