Sunspot is a Ruby gem that interfaces with the Apache Solr search server. All the power of the Solr search engine; all the beauty of Ruby. Sunspot exposes all of Solr's most powerful search features using an API of elegant DSLs. That means robust, flexible fulltext search with no boolean queries ...
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
12 views
Faceted search using Sunspot on Rails
I am new to Sunspot/Solr and I am facing a problem while creating faceted search using Sunspot.
Following are my models:
user.rb
has_many :skills
searchable do
text :skills do
...
0
votes
0answers
13 views
RSolr::Error::InvalidRubyResponse - 200 OK
I am getting following error even after starting forreman and starting sunspot:solr :
RSolr::Error::InvalidRubyResponse - 200 OK
Error: java.lang.NullPointerException
at ...
0
votes
0answers
41 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 ...
0
votes
1answer
19 views
Rails: Sunspot and Will_Paginate Issue
I've hit a snag with my college project regarding the use of the Sunspot search gem and will_paginate. I've been using sunspot in my project index controller and it was working fine but when I added ...
0
votes
0answers
9 views
Sunspot/Solr raketasks not loading in Rails 3 Mountable Engine
I'm trying to add the sunspot_rails gem to my Rails Mountable Engine, so I can use Solr to do full text searches. Like it states in the README file I've added this to my Gemfile:
gem "sunspot_rails"
...
0
votes
1answer
36 views
Capistrano: how to run a command-line rake task and rescue only for specific errors?
In our Capistrano deploy, we have a task to make sure our Solr (via Sunspot gem) is running:
run "cd #{current_path} && RAILS_ENV=#{rails_env} bundle exec rake sunspot:solr:start"
However, ...
1
vote
0answers
13 views
how to deal with sunspot when distributed deployment
Now I have a rails application to deploy.
I use two app servers and a dababase server.
the two app servers run the same code to load balancing.
I use sunspot(solr) do fulltext search. I want to ...
0
votes
0answers
24 views
How does fulltext solr search really work with sunspot?
Ok in my Style model I've got things setup like this
searchable do
text :full_name
end
However when I run
Style.search { fulltext 'Monkey' }.results
I get an empty result set. When I run ...
0
votes
1answer
49 views
Sunspot Solr Rails geosearch is failing with undefined method error
I'm new to using the Sunspot gem. I have it installed and correctly indexing and querying. However, I am now trying to bound the search parameters by including geo search. My database table that is ...
0
votes
1answer
37 views
What is wrong with this Sunspot Solr setup?
I am using sunspot to search my local db. After adding the gems, running the generate command, and booting up the solr server I do the following:
class Style < ActiveRecord::Base
...
0
votes
0answers
12 views
RSolr::RequestError (Solr Response: Service Unavailable)
I am using rsolr 0.12.1..
I am getting RSolr::RequestError (Solr Response: Service Unavailable) while refreshing a page which sends many ajax request.
I searched for this error and cant find the ...
2
votes
1answer
28 views
In solr how do you maximize variability within a page of a result set?
This is for a product search where we want to show a variety of brands in the search results (24 per page). Ideally we would limit it to each item on the page must have a unique brand id, unless ...
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
41 views
Reindexing fails after upgrading solr
I used sunspot_solr and sunspot_rails gem that integrates solr 4 from the following link..
source
Now, when i try to reindex the existing documents, i get a status 500, Internal Server Error..
I ...
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 ...
1
vote
0answers
37 views
Sunspot search in production Ruby on Rails 3.2
I install solr-tomcat on my production server, and start this, replace my conf/schema.xml & conf/solrconfig.xml from application but it does no work.
In the :8080/solr/admin/ i have HTTP Status ...
0
votes
0answers
6 views
Unable to load sunspot_mogoid
My Rakefile contains:
require 'sunspot_mongoid'
which on a new server is suddenly giving me:
$ LIMITED_ENV="true" QUEUE=* RAILS_ENV=production rake -f /opt/ShopApp/Rakefile resque:work --trace
...
1
vote
1answer
47 views
Fuzzy search with Solr and sunspot
I have installed Solr and the Sunspot gem for my Rails 3.0 app.
My goal is to do fuzzy search.
For example, I want the search term "Chatuea Marguxa" be found as "Château Margaux".
Actually, only the ...
0
votes
1answer
10 views
How to test sunspot search results or hits
I am getting an error while testing an index page which uses sunspot search.
*** NoMethodError Exception: undefined method `[]' for nil:NilClass
The code which i wrote is
@object.hits
This ...
0
votes
2answers
28 views
Which version of solr does sunspot_solr gem use?
I installed solr 4.2.1 recently... And in my rails program, i use the sunspot_solr and sunspot_rails gem... since sunspot_solr gem is a pre-packed Solr distribution, i was wondering if the program ...
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
0answers
32 views
Partial search in sunspot solr
I'm trying to do partial search using sunspot. here is the code that I modified in schema.xml
<fieldType name="text" class="solr.TextField" omitNorms="false">
<analyzer>
...
0
votes
1answer
26 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
14 views
How to use sunspot/solor to find common phrases in my database quickly?
I have around 20,000 records in my database and growing that are heavy text. I have this method that is below that goes through each of the records and find the most common phrases that are between ...
4
votes
1answer
97 views
What is the correct way of maintaining indices for Sunspot Solr?
I am confused about the Solr indexing mechanism. Perhaps someone can shed some light on it.
So, we have 2 rake commands: rake sunspot:solr:index and rake sunspot:solr:reindex
Here's what my index ...
2
votes
3answers
52 views
what's best way to make a search form for a really small application?
I'm using rails to make a simple search form in Rails (search news title and content, users name, etc). This app is hosted by Heroku. I took a look at sunspot but it seems it's not free (doesn't work ...
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 ...
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 ...
0
votes
1answer
52 views
Can't get rails search form to work with simple_form and sunspot
I have a simple rails app that uses the simple_form gem for forms and I am trying to set up a search form using sunspot. I have followed the instructions in Ryan Bates' railscast on setting up sunspot ...
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
2answers
157 views
Reindex Sunspot Solr in Capistrano
I'm following this snippet for adding Sunspot Solr in Capistrano https://gist.github.com/doitian/1795439 and it works, but when I run cap solr:reindex it shows a question (as expected) asking if I ...
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 ...
1
vote
1answer
43 views
Conditional order_by depending on data in Sunspot
I am wondering if there is a way to sort using some kind of if/then semantics for the sort order.
The basic requirement I am trying to adress is this:
My records have a contact_again_time time ...
0
votes
1answer
45 views
Sunspot/Solr: word concatenation
I'm using Solr with the Sunspot Ruby gem. It works great, but I'm noticing that sometimes users will get poor search results because they have concatenated their search terms (e.g. 'foolproof') where ...
0
votes
1answer
42 views
Sunspot and Solr: Google-like “site:” in search
I'm fairly new to Sunspot and Solr.
I'd like to implement something similar to the Google site: phrase in searches, so that when I search for
something
I get all records related to "something". ...
0
votes
2answers
31 views
Would reindexing latest record first be okay?
We reindex the whole database from time to time. It usually take hours. However only the latest ones show up at the front page. So I am thinking that, if I reindex the database backwards, that is, ...
0
votes
1answer
27 views
could not connect Mysql sunspot
I using in my ROR application sunspot gem for search. In my local computer its fine, but after upload on server when want search any I was an eror:
Can't connect to MySQL server on '127.0.0.1' ...
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 ...
0
votes
0answers
54 views
sunspot solr how to order_by using distance or latitude longitude information
I am working in a rails application which uses the following code to show distance information
= Geocoder::Calculations.distance_between([search.latitude.to_f, search.longitude.to_f], ...
0
votes
0answers
12 views
Use sunspot solr with em-synchrony
Basically I would like to know if there is a way to use rsolr-async with sunspot-solr. Any pointers to achieve this would be much appreciated.
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
0answers
10 views
TermVectorComponent support in Sunspot?
Does Sunspot support the solr TermVectorComponent so that i can query tfidf iformation Or is there some ruby library that i can use for getting that information from solr?
0
votes
0answers
42 views
Sunspot/SOLR: run multiple projects against same SOLR server
In my development environment I run multiple projects that use SOLR via Sunspot. Is there a way to "partition" searchable models so that if (for example) I have a Post model in two separate projects, ...
0
votes
0answers
31 views
how to use Sunspot search with nested resources
I have two models,lost_item and tag.
LostItem belongs to :tag
Tag has_many :lost_items
i want to search some attributes of lost_items.
the original code is like this:
class LostItemsController < ...
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
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 ...
1
vote
0answers
86 views
Mixed pagination results in solr 4.1.0 with sunspot
I'm working on upgrading a solr installation and the corresponding ruby gems in a rails project and running into a strange issue.
In my application I have 2 indexed models, Article and Event.
With ...
0
votes
1answer
62 views
Rails form submit for two different models
I'm working on a simple webapp in which you import a CSV and search through it using Sunspot. The only actions being used by the user are Index and Show. All of this is working fine, but the end ...
0
votes
0answers
45 views
Sunspot & Delayed Jobs not working with Mongoid
sunspot & delayed_jobs are both complaining about this same issue:
#<Mongoid::Contextual::Mongo:0x882a9c8 @cache=nil, @klass=StoriesCache, @criteria=#<Mongoid::Criteria
selector: ...





