Sunspot is a DSL that exposes the best of the solr search API to the Ruby runtime.

learn more… | top users | synonyms

0
votes
0answers
5 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" ...
1
vote
0answers
20 views

SOLR unknown field type, Rails / Capistrano

Am trying to deploy solr based search using capistrano, am receiving errors while reindexing, RSolr::Error::Http (RSolr::Error::Http - 400 Bad Request Error: ...
0
votes
1answer
22 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
26 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
24 views

SOLR searching issue in RAILS

We have a solr search implemented. We are encountering a situation and wish to tackle it as cleanly as possible. We have a book that has an isbn number and it has a relation of isbn numbers in ...
0
votes
1answer
23 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
1answer
26 views

No PID file error deploying with sunspot with Capistrano

I am trying to deploy Sunspot Solr with Capistrano. I have been setting this up based on this gist: https://gist.github.com/doitian/1795439. deploy.rb namespace :deploy do task :start do ; end ...
1
vote
1answer
64 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 ...
1
vote
0answers
31 views

Error while running the solr:server_win rake command

I am getting the following error while running the rake command for solr:start_win. I hve also installed sunspot_rails gem. Please help us on this. C:\Documents and ...
0
votes
0answers
319 views

Solr with Rails - rake sunspot:reindex is not working

Hope everyone is fine and doing good! I am stuck into a strange issue where I am looking for your inputs. My problem is: After deploying my application on Production using Capistrano, when I am ...
1
vote
1answer
45 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
0answers
26 views

acts-as-taggable-on tag cloud with a previous constraint

Say I have this in my controller: unless params[:query].blank? @search = @user.things.search do # @user previously found fulltext params[:query] end @things = @search.results else ...
0
votes
2answers
143 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
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
0answers
39 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
105 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
1answer
109 views

Fuzzy “begins with” search with Solr and Sunspot on multiple words

I'm trying to provide a text search to find cities, based on their name and the name of the country they belong to. For instance, I want to return Milan, Italy for a search with the terms mil ita, or ...
-1
votes
1answer
123 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
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
112 views

Solr Strip html when highlighting with stored html fields

Using Solr and Sunspot in rails. I am searching on an html field using a field type like this: <fieldType name="text_html" class="solr.TextField" omitNorms="false"> <analyzer> ...
1
vote
1answer
81 views

How we can search any word is searchable on sunspot solr on rails project

How can i search full text with sentence and search any word matched. ex:- "may i find" is searching in model ttle it have to display result which matched the either words of "may", "i", "find" ...
0
votes
0answers
64 views

Capturing Sunspot Solr logs

I am currently working on Rails 2.3.9 with sunspot_rails 2.0.0. I have data reindexing running in background job. I wanted to capture how does solr indexes data since I am facing some performance ...
2
votes
1answer
45 views

Is it possible to use more_like_this across different data types?

The documentation for more_like_this shows how you can use it to get more of the same type of content that is similar based on a criteria: class Post < ActiveRecord::Base searchable do # The ...
0
votes
0answers
52 views

how to implement sunspot/solr search with multiple fields?

I have the form for the search :get) do %> true) %> SEARCH 40%> In the controller @search=PurchaseOrder.search do fulltext params[:search] with(:project_id, ...
0
votes
1answer
97 views

How to avoid warning “No queryConverter defined, using default converter” in solr search

How to avoid warning No queryCOnverter defined in solr search.
0
votes
2answers
126 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. ...
4
votes
2answers
151 views

While searching with sunspot_rails on Solr, how can I boost whole word matching over partial word matching?

I am using sunspot_rails to submit queries to a Solr instance. Everything works ok, but I want to order my results with the following criteria: I want to take first the documents where the matching ...
0
votes
1answer
44 views

How do I randomize objects with Sunspot in Rails with pagination that doesn't change?

We use Sunspot Solr with our Rails 3.1 app. We have a location model that we are searching. Here's the code for the search location_search = Location.search do keywords params[:search][:keywords] ...
6
votes
2answers
185 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 ...
2
votes
1answer
221 views

Solr fulltext search in production - which is better sunspot:solr bundled solution or standalone tomcat+solr?

We are utilizing sunspot's Solr gem for a while in development mode. The application is now needs to be moved to production environment. Are there any cons of setting up solr in production ...
1
vote
2answers
145 views

Get the related search queries using sunspot solr

My rails application using sunspot solr to search the books/authors. Now If I give search query as "Jeffrey Archer" it ll give the set of books which has "jeffrey archer" as author. But If I ...
1
vote
2answers
56 views

sunspot_solr stored fields

I have this line in searchable block text :title, :stored => true Am searching book title via sunspot solr. But do I really have to use stored field ? :stored => true as per documentation ...
2
votes
2answers
175 views

sunspot-solr: How to exclude search results that include any given word?

I have a Ruby on Rails application which uses solr. I use sunspot gem for that. I also use websolr for the production environment. I know we can do fulltext searching with sunspot solr. But I also ...
0
votes
1answer
94 views

adding jar files to sunspot solr

We are currently using sunspot 1.3.3 gem. We configured solr spellchecker component with JaroWinklerDistance as below in solrConfig.xml. However, it results in ClassNotFoundException. How do we handle ...
2
votes
1answer
114 views

Ruby on Rails Sunspot solr condition on included association

I'm trying to search Products using solr and it's working well. Except that I want to restrict the suppliers, associated with Products by has_and_belongs_to_many, using the status field in Supplier ...
0
votes
1answer
45 views

Solr Sunspot — How to make 2 strings like “Co.” and “Company” appear identical?

I have many records that contain abbreviations in a column of names. I might have the record "ABC Brewing Co.", and I want solr to interpret this as being identical to a search for "ABC Brewing ...
0
votes
1answer
30 views

Sunspot Searchable :as, :using, :multiple

Does anyone know the documentation URL for the :as, :using, and :multiple symbols in Sunspot's searchable block? I found it before, now I cannot find it anymore.
1
vote
1answer
28 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
77 views

Long Running Process in Openshift - like sunspot

I know there are quite a few openshift fan out there and the list of feature that openshift give you I dont blame them too so this question is for those guys I have solr full text search engine ...
1
vote
0answers
75 views

Sunspot search doesn't work

I'm trying to make an search option in my site, but it won't show results after an search query. I have followed this tutorial: ...
0
votes
0answers
38 views

Reindex data after particular time using sunspot

Well this is related to sunspot and solr. I have implemented full text search using sunspot gem in one of my code, the problem which i am facing is every time i update my model for which searchable ...
1
vote
0answers
72 views

Sunspot :: “stored => true” doesn't return hits

I have set up Sunspot for the first time and it works. I can search Posts using the following code: Post.search { keywords'some_search_term'} I'm onto the step of implementing highlighting and ...
0
votes
0answers
327 views

RSolr::Error::Http (RSolr::Error::Http - 404 Not Found) heruku [closed]

I'm working on web solar in my rails application,my Application user WEBSolr for searching. My local everything working fine but when I deploy my code to heruko, my application get stopped , and its ...
0
votes
1answer
179 views

Tika exception error while indexing rich documents rails 3

Well I am just implementing full text search in rich documents using sunspot_cell. I am using paperclip for attachment. I have done all the required configurations and include all the *.jar files in ...
0
votes
0answers
29 views

Building Logical queries using Sunspot

I have a User and Skill model, having (has_many association) where indexing is done using sunspot. Now the requirement is to implement logical queries. Example "skill1 AND skill2" "skill1 OR skill2" ...
1
vote
1answer
143 views

How to implement multi model search using sunspot

There are two models User and Language, having association (has_many :languages). Now I want to search a language name and the search obtained should tell the user id as well. In other words that ...
0
votes
0answers
74 views

Sunspot Solr unexpected behavior on Ruby on Rails 3.2

The point is that Sunspot search text only in :name field. Here is my model: class PhoneScript < ActiveRecord::Base belongs_to :user validates :name, :presence => true searchable do ...
0
votes
1answer
183 views

Sunspot Solr: Is it possible to add a field without reindexing all rows?

On the documentation for Sunspot, it says: If you make a change to the object's "schema" (code in the searchable block), you must reindex all objects so the changes are reflected in Solr What ...
0
votes
1answer
201 views

Sunspot Solr accessing non-stored attribute fields in search results

I'm using Sunspot Solr on Rails for search. In my class definition I have something like this (simplified from my real one): searchable do text :name integer :count boolean :priority end Is ...
0
votes
0answers
52 views

undefined method `with' for controller with sunspot rails

I am implementing a Rails 3.1 application in combination with the sunspot_rails gem (2.0.0.pre) and I am trying to scope search results based on multiple conditions, one of them using the in_radius ...

1 2 3