0
votes
1answer
28 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
33 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 ...
2
votes
0answers
95 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 ...
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
1answer
41 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
0answers
49 views

SOLR on rails not running correctly any more

I have now changed this question because it is a solr issue on my rails app. solr tells me that Severe errors in solr configuration. java.lang.RuntimeException: Can't find resource 'solrconfig.xml' ...
0
votes
1answer
44 views

Search based on locale on Sunspot Solr

I'm using the following approach to internationalize models on my app: class GenreLocalization < ActiveRecord::Base attr_accessible :genre_id, :name, :locale end class Genre < ...
0
votes
2answers
196 views

Websolr, solr search, Heroku, and sunspot [Ruby on Rails]

So I have a question. I am currently on my development machine using the Sunspot gem for searching through my Rails applications records which is really nice since it does full text searching through ...
0
votes
1answer
115 views

Rails3 SOLR sort order using a child field

I have a working search using SOLR in a Rails 3 app. My controller returns results in pubdate order. I am trying to sub-order by the Section.name. How can I add the child field to the order-by syntax? ...
1
vote
1answer
100 views

Cannot start SOLR on EC2 machine - does not detect gem

I recently installed SOLR on my Amazon EC2 machine and when I try to start SOLR using RAILS_ENV=production bundle exec rake sunspot:solr:start --trace, I get the following message: ** Invoke ...
0
votes
0answers
60 views

Monitoring Solr using Monit

I'm new to Solr and Monit. I have a Rails 3.2 app with Solr, how do you configure monit to handle Solr? Cheers, and Thanks, Zeck
2
votes
1answer
113 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 ...
2
votes
1answer
143 views

custom query with sunspot solr on rails 3.2

3 models: Class Product include Mongoid::Document has_many :orders, dependent: :destroy, :autosave => true #search searchable do text :title, :description, :boost => 2.0 time ...
0
votes
1answer
42 views

friendly SEO urls with sunspot and rails 3

How can create SEO friendly url using using sunspot? I want to convert a search from this: http://localhost:3000/restaurant?utf8=&search=newyork To something like this: ...
0
votes
1answer
108 views

Solr Search Stripping Phone Number in Database before Comparison

I have a list of restaurants that I want to match with the restaurants in my database using phone number. The problem is that the numbers are formatted differently (i.e. (123)123-1234 or 123 123-123 ...
0
votes
1answer
120 views

Is there a way with Solr to search fuzzy AND exact?

thank you for taking your time Problem I have a problem with searching records based on a fuzzy name search and an exact Regio search. This is what I have now: What I have now # :klantnaam is a ...
0
votes
1answer
162 views

Why Sunspot Solr does not bring results when I include “of” word in search query?

I am trying to make a simple query using sunspot/solr and I seem to fail to fetch the results when my query string contains the word "of". To be more specific: When I query "University of ...
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" ...
0
votes
1answer
99 views

displaying join table information with a solr result in the view

I have a collection of Fabrics each Fabric has many colours. My DB association Fabric has_many Colours through Fabric_colours I am using solr to index my Fabrics, so structuring complex SQL queries ...
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 ...
0
votes
1answer
50 views

Rails + Apache solr taxonomy integration

I am little bottle-necked with design approach to my application. My plan is to create model Product and add filter, that uses Country, Region and City. Country -> Region -> City are one to many ...
1
vote
1answer
278 views

Rails 3 Sunspot Fulltext Search Usage

So I've implemented the sunspot_rails gem into my application to utilize the powerful Solr search engine. I recently checked out Ryan's railscast on full-text searching and I noticed he was using ...
4
votes
1answer
296 views

sunspot - solr - How to do Exact match

articles = Article.search do |s| s.fulltext "Java Script" end How do i tell sunspot like give me all the results which exactly matches "Java Script" Right now am getting results like "Java, Unix ...
2
votes
1answer
355 views

How to do simple boolean query in sunspot solr

>>> marketing = User.search do |s| >>> s.fulltext "Marketing" >>> end >>> marketing.total 1448 >>> sales = User.search do |s| >>> ...
0
votes
1answer
123 views

ruby on rails - indexing ancestry records with Sunspot

I'm trying to index the ancestor categories of products for the purposes of faceting using Sunspot (and searching, but if I can solve one I'll solve the other). The code works okay for the immediate ...
0
votes
1answer
298 views

Rails 3 Sunspot Solr Conditional Search Only Applied To New Records

I'm trying to perform a query and find 20 records recently created across multiple models using the sunspot_solr gem. Currently it achieves that no problem, but I wanted to add some extra validations ...
0
votes
1answer
242 views

solr search in rails 3 - No connection could be made because the target machine actively refused it. - connect(2)

I've been trying to follow the instructions to install solr on rails 3 here: https://github.com/sunspot/sunspot#readme ...
0
votes
1answer
120 views

Basic Sunspot :with filter improperly processed

I have a very basic Sunspot search: company_search = Sunspot.search(Company) do with(:can_have_barcodes, true) fulltext search_term, :minimum_match => 1 end The problem is ...
0
votes
1answer
480 views

Sunspot Solr Rails - hidden fields scoping and associated models

I would like to use hidden field parameters(colour_id) to refine my search to fabrics associated with particular Colours. Fabrics have many Colours, Suppliers and Categories However I would like the ...
0
votes
2answers
342 views

Sunspot Solr error on rake sunspot:index

I am trying to use Sunspot gem for Solr on a Rails 3 app. I have followed RailsCast #278, since I am using Windows I have to do rake sunspot:solr:run and that seems to start with no error. However ...
0
votes
1answer
311 views

No field configured for Model with name 'image_filename'

I have a Model with 2 atrributes: :image_filename :yt_video_id I have this code in my controller: def index @search = Model.solr_search do |s| s.fulltext params[:search] s.paginate :page ...
0
votes
1answer
110 views

how to write search method code to search more than one id at a time

In my project am trying to display products based on user choice. User can check which department(women, men and kids) and category (dress, tops, tees etc) they wish to see. For this am using check ...
2
votes
3answers
641 views

solr sunspot - searching belongs_to association

I have a fabrics model that belongs to multiple other tables. class Fabric < ActiveRecord::Base validates :name, presence: true belongs_to :design belongs_to :composition belongs_to ...
1
vote
1answer
227 views

How to avoid retrieve entire stored field from solr

I'm using sunspot and solr for a rails app to search ebook contens, for highlight feature I have to set the ebook_content as a stored filed, every time I queried solr for result, it sends back the ...
3
votes
2answers
1k views

restart sunspot solr when make a deploy with capistrano in rails 3.1

I have a project rails 3.1 in production environment. This is my deploy.rb now: $:.unshift(File.expand_path('./lib', ENV['rvm_path'])) # Add RVM's lib directory to the load pathe require ...
1
vote
1answer
548 views

Can sunspot search inside array?

I have the next model with a array field: Class Invitation include Mongoid::Document include Mongoid::Timestamps::Created include Sunspot::Mongo field :recipients, :type => Array ...
2
votes
2answers
627 views

sunspot return all results for a model

I have in my controller this: def boards @user = User.find_by_slug(params[:id]) @search = @user.boards.solr_search do |s| s.fulltext params[:search] s.keywords params[:search] ...
0
votes
1answer
261 views

Rails 3 - how to search with Solr in associations?

Already whole day I am struggling with setting up the Solr for searching with associations. I have a table photos and this table has a tags like nature or city. These tags are saved in the table ...
0
votes
2answers
136 views

Rails - searching and configuration of Solr

I use for searching a content in my app Solr. What I don't like is, that everytime, when I restart computer, I have to manually start Solr and then, when is in the app a new content, I have to reindex ...
0
votes
1answer
123 views

Manually indexing a record in websolr [closed]

Is there any way to index a record manually in websolr. like in rails code i have get a record user = User.first # index user in solr?
2
votes
3answers
436 views

sunspot_rails does not read sunspot.yml for its config

I'm trying to use sunspot with mongoid, but sunspot is not connecting to Solr. Following error reported by Rails when trying to connect to Solr. Errno::ECONNREFUSED (Connection refused - connect(2)) ...
2
votes
2answers
1k views

Elastic Search vs Sunspot comparison on features

Couden't find any compare questions related to sunspot (Solr) to Elastic Search (Lucene) What would be the pro's and con's on both search engines? I saw other VS questions to get a better inside in ...
0
votes
2answers
195 views

Sunspot search ordering

I'm using Sunspot (https://github.com/sunspot/sunspot) with Rails. Here's my model: class Item < ActiveRecord::Base searchable do boolean :red boolean :blue boolean :green ... ...
1
vote
2answers
1k views

Geospatial searches with Solr (websolr) in Rails 3.x

I am looking to utilize Solr for both text and geospatial searching in a Rails 3.1 app. I see that websolr supports geo-spatial indexing & searches but the two gems for it (sunspot & rsolr) do ...
2
votes
1answer
271 views

How to restrict Sunspot search with nested models?

I want to filter the Sunspot search results with with(:is_available, true). This is working with the User model, but I can't make it work with the Itinerary model. ...
2
votes
2answers
809 views

How can I search across multiple tables(models) with Sunspot Solr?

I want users to be able to use one search box to search for different objects. I would differentiate them on the results page. Both would be full text search. Should I make a Search controller and ...
0
votes
2answers
239 views

sunspot solr: What is the functional difference between path and solr_home?

I was wondering if somebody can teach me the functional differences between path and *solr_home*. What kind of paths can they take (I know path cannot take filesystem path as parameters). My current ...
0
votes
1answer
110 views

sunspot solr, rails 3.1.1: Why do my results have the entire db record printed automatically?

I did the standard procedure in setting up Sunspot Solr for my rails app but when I print the results, I get the entire db record printed automatically. Here is my results.html.erb: <%= ...
1
vote
0answers
323 views

rails3.1.1 and sunspot: Solr Response: Not Found error

I'm trying to build an application with sunspot_solr and I keep getting this error: rsolr (0.12.1) lib/rsolr/connection/requestable.rb:39:in `request' rsolr (0.12.1) lib/rsolr/client.rb:34:in ...
3
votes
1answer
2k views

Sunspot / Solr / Rails: Model Associations are not updating in the Index

I have a Fieldnote model in my app, which has_many :activities attached to it through a table called :fieldnote_activities. I then define a searchable index this way: searchable :auto_index => ...

1 2