Sunspot Rails Plugin

learn more… | top users | synonyms

0
votes
1answer
245 views

Why is my sunspot_rails query taking so long? What should i do to speed it up?

I am new to Solr/Sunspot and i'm sure i've done something wrong. I have sunspot_rails 1.2.1 working with rails 2.3.4 (tried other versions but they wouldn't work and we are hoping not to upgrade ...
4
votes
1answer
594 views

Sunspot rails: include associated models when calling .results

Let's say that I want to search for Events in my app. When I display the results, I want to display who created the event, for instance. Is there any way to add .includes(:user) somewhere, to avoid ...
0
votes
1answer
440 views

Rails Sunspot Auto-complete Field

I have a search form with two fields: One is: name Second one is: category So two models "Post" & "Category" Category search field is auto complete field so it puts category name. The trouble ...
0
votes
1answer
138 views

Using Rails Sunspot How can I find primary keys that correspond to facets returned?

I am wondering whether there is any easy way to get the primary keys of the objects that contribute to a facet result. In other words, if search.facet(....).rows.first returns a FacetRow, can I get ...
5
votes
2answers
324 views

Setting up sunspot geolocation scenario

I am using Sunspot for searching and using Geocoder for addresses and then for calculating distances, Geokit-rails3. class Product < ActiveRecord::Base belongs_to :store searchable do ...
1
vote
1answer
121 views

How to use order_by if it is a t.date or t.decimal field?

How do you order by decimal or date fields? class CreateUserPrices < ActiveRecord::Migration def self.up create_table :user_prices do |t| t.decimal :price, :precision => 8, :scale ...
0
votes
1answer
273 views

Solr connection refused error after java update on Mac OS X Lion

I recently updated Java for Mac OS X 10.7-Update 1. After that I recognized that in my local development application under Rails 3.0.10 with sunspot/solr the solr-server starts correctly 0:03.80 ...
0
votes
0answers
298 views

Severe Errors in Solr

I've been trying to get sunspot/solr working in a new environment (Ubuntu), and I'm getting this error of 'Severe Errors in Solr' which I've included below. I don't know what is causing the error, ...
0
votes
0answers
581 views

getaddrinfo: Name or service not known with solr sunspot

I'm attempting to run solr and sunspot with rails 3.1, but I keep getting the error getaddrinfo: Name or service not known my controller is fairly basic def index @food_names = ...
1
vote
1answer
204 views

Sunspot search order_by error - target column is not ordered

I am implementing a pretty basic Sunspot solr search in Ruby on Rails 3.1. I call search on my Idea model with an order_by argument on a integer column but the result set is not ordered. Search ...
2
votes
1answer
397 views

Sunspot and RSpec fail. The commit doesn't seem to be working

I've got a few tests running with RSpec for a Rails site, but despite following the instructions things aren't quite behaving themselves. I create an article via a Factory, run Sunspot.commit and ...
1
vote
0answers
81 views

How to identify and save keywords in the database and retrieve it later in rails 3.1

I am working on a rails 3.1 app where I have to implement the following logic. 1) Provide a searchbox 2) User enters their query in the searchbox 3) If the query is not present in the database the ...
2
votes
0answers
231 views

How to set up sunspot using Capistrano on Dreamhost

I have read the answer for a similar question asked on SO before, but could not make heads or tails of it. I installed the suspot_rails gem and followed other steps to set up sunspot on my local box ...
2
votes
1answer
171 views

How can 'parse' be undefined for Time class in test environment, but not development or production?

I'm encountering a strange issue while running a test (Steak + Capybara) that requests a certain page where I get the error: undefined method parse for Time:Class The method call occurs in a ...
1
vote
1answer
176 views

Sunspot Rails - Can user change what fields to search?

I started using Sunspot to perform searches in my Rails 3 app and I ran into a doubt. Is there a way that I can let the user choose in what fields he/she wants to search. For example, in my app we ...
9
votes
1answer
2k views

Rails Sunspot gem: Usings facets with multiple model site-wide searches

I'm trying to implement a sitewide search through the powerful Sunspot gem for Rails. This involves a search across multiple, very different models at once. What I WANT to do is use the faceting ...
2
votes
1answer
474 views

Search form using sunspot/solr

I'm using sunspot for the first time and i'm trying to setup the search. full text search seems to work fine. however, i have a form with a search box and multiple filters on boolean fields that the ...
1
vote
1answer
525 views

undefined method `closed?' for nil:NilClass Ruby on Rails Sunspot

I have spent more than 24 hours trying to figure out what im doing wrong here. Can you please help. This is what i have. lyrics_Controller.rb def index @search = Sunspot.search(Lyric) do ...
0
votes
1answer
299 views

How to refresh after Sunspot Solr synonyms.txt update?

I'm using Mongoid with Sunspot Solr, and I frequently update the synonyms.txt file, but I'm not sure what method triggers the index to update using the new synonyms file. Right now I do ...
2
votes
1answer
865 views

Debugging Mongoid and Sunspot SOLR

I am fiddling with sunspot and SOLR sunspot, trough sunspot mongoid. Everything seems to work fine, but I am not getting search results back. The solr admin on http://0.0.0.0:8982/solr/admin/ tells ...
0
votes
1answer
703 views

What is the formula for calculating hit result score in Sunspot on Rails?

Say, I have this code in my model: class Facility < ActiveRecord::Base ... searchable do text :name text :facility_type do end ... And this in search controller: @search = Facility.search ...
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
0answers
292 views

solr query analyzers

I am trying to use double metaphone as one of the analyzers for duplicate detection. here is how my schema looks like <fieldType name="text" class="solr.TextField" omitNorms="false"> ...
6
votes
2answers
2k views

How does Sunspot modify Solr's schema.xml? Does it modify it at all?

Let me know if I am wrong, but I think solr only expects fields that are already mentioned in the schema.xml. So, if I have a field called 'title', I need to mention this in the schema. There is no ...
1
vote
1answer
647 views

Indexing different fields with different fieldtype in Sunspot (Solr)

I'd like to set up my indexing so that phonetic-matched results are given less weight than regular matches. To do this, I've created two different fieldType sets in my schema.xml for text: ...
0
votes
1answer
1k views

sunspot solr undefined field type

I'm having a problem with my sunspot and solr. In development it worked like charme but in production I get the following error out of my rails production log: RSolr::RequestError (Solr Response: ...
0
votes
1answer
557 views

How to use sunspot_rails gem to search for related articles

I have a mini blog app and i would like user to view articles that relates to what they are reading in the article show page. without the sunspot_rails gem i would do something like this in my model ...
1
vote
1answer
225 views

Sunspot_rails gem not working for me in rails 3.1rc5

When ever a perform a search query i get wrong number of arguments 0 of 1 my controller code is as follows def search @search = User.search do fulltext params(:search) end ...
7
votes
4answers
802 views

Sunspot_Rails - undefined method `searchable' on page

I have a model with a searchable block, like so: class Contact < ActiveRecord::Base searchable do text :contact_name, :company_name, :contact_email end end In the controller's index ...
3
votes
1answer
627 views

Sunspot-solr is eating up too much memory? What's a convenient way to reduce memory usage?

So it seems Sunspot-Solr is eating a lot of memory up. And its probably due to my malpractice as a programmer allocating proper usage of it. First of all, I do not allow sunspot to reindex by itself. ...
1
vote
0answers
294 views

Writing RSpec specs to test app using sunspot_rails

Does anyone have a good example of using RSpec with the sunspot_matchers gem (or just plain RSpec) to test code using the sunspot gem? I'm trying to figure out what's going on with this error and ...
0
votes
1answer
1k views

How to tell Sunspot Rails to search and more importatnly to order by id of a Model?

Assume that I have the following model and I have made it searchable with sunspot_rails. class Case < ActiveRecord::Base searchable do end end Standard schema.xml of Sunspot in Rails declare ...
1
vote
0answers
332 views

sunspot_rails Levenshtein distance operator

I'm using sunspot_rails (on rails3) to interface my rails app to a solr server. I would really like to perform fuzzy searches using the ~ operator. Anyway it seems that this is not supported. I'm now ...
3
votes
1answer
159 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 ...
0
votes
2answers
1k views

Can't connect to Sunspot server in Ubuntu server

I followed the steps in https://github.com/outoftime/sunspot/wiki/Adding-Sunspot-search-to-Rails-in-5-minutes-or-less to install & set up Sunspot search in Rails in a Mac OS and it is ok. In a ...
4
votes
1answer
221 views

Rails Sunspot - Is it possible to retrieve a facet row by the value?

If I have a query facet (and therefore know the row "value"), is it possible to retrieve a specific row from the facet based on the known "value"? @search = Product.search do ...
0
votes
1answer
163 views

Using Sunspot to generate index views - is that smart?

We are currently developing in app in which a number of 'index'-views make use of a lot of virtual attributes. At the same time we require full_text search functionality. The solution we have chosen ...
5
votes
1answer
619 views

Sunspot: force index of parent model when updating child model

I am using Sunspot to generate alot of my apps indexes and overviews. In this app i have 2 models which have a parent/child one-to-many relationship. With Sunspot I index the number of childs a ...
1
vote
1answer
2k views

Sunspot Solr - working with facets

I have setup faceted search using Sunspot, SOLR. Like this: for row in @search.facet(:facet_id).rows link_to row.instance.name, :url_for(:search => params[:q], :facet_id => row.value) My ...
1
vote
1answer
279 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 ...
0
votes
2answers
568 views

Solr Sunspot non-indexed field

Solr (via Lucene) supports different ways to indicate the way a field is indexed in a document: indexed, tokenized, stored,... I'm looking for a way to have fields that are stored in Solr but are not ...
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 ...
3
votes
3answers
505 views

sunspot with jruby

Hi can sunspot be used with jruby, also here is my app details jruby-1.6.1 rails 3.0.7 when i install all the gems and run rake sunspot:solr:start it gives me the following error Gem::LoadError: ...
2
votes
1answer
941 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
1answer
634 views

Sunspot/Solr queries ending with logical operators AND/OR/NOT result in error

I noticed that queries ending with logical operators like AND/OR/NOT example ('this AND') will result in an error. Now what would be the best way to handle this? Just trim out or escape all the ...
0
votes
1answer
166 views

sunspot 1.10 - solr_home

I'm using sunspot 1.1.0 , and I tried setting the solr_home in sunspot.yml . when I fire the solr it doesn't take solr_home into account. Is there another way to start solr "rake sunspot:solr:start" ...
2
votes
1answer
400 views

what's the best way to re-index just the models that changed during solr downtime?

if I have millions of User records with some text fields getting indexed to solr on create and on update, how do I go back and re-index the few records that never made it to solr? i.e. what if solr ...
2
votes
1answer
243 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
1answer
313 views

How to search a tree with sunspot & solr

I have a model that looks something like this class Post acts_as_tree end What I want to do is conduct a search on the contents of an entire thread of posts, but only return the parent post in ...
0
votes
0answers
203 views

jruby + sunspot + rails 3 + solr

Hi i am trying to use these technologies to implement search on my app. and currently I am trying to implement distributed search (shards). Can anyone point me to a resource that can help me in doing ...