Tagged Questions

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 and no string programming.

learn more… | top users | synonyms

10
votes
4answers
889 views

Is anyone using SunSPOTs or another sensor/controller platform?

I'm curious how many people out there (well, on StackOverflow at least) have played with Sun's SunSPOT technology. SunSPOTs are wireless sensor devices that can also control robotic platforms, like ...
8
votes
1answer
2k views

Setup sunspot solr with rails in production environment

I have tried various links but I can't seem to find a good resource on creating a running solr instance that works with rails in production. I understand that you have to setup the solr server for ...
8
votes
1answer
1k views

Sunspot highlights not appearing

I've gone through the docs in github: http://github.com/outoftime/sunspot to find solutions for highlighting, but it doesn't seem to work for me. My Job model has something like this block (omitted ...
5
votes
2answers
183 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 ...
5
votes
4answers
1k views

Full text search for Rails 3

I’m evaluating full text search methods for Rails 3 ATM. Does anyone here have a recommendation? Seems to me as if most of the known methods (Sunspot, Sphinx, Ferret, Xapian) aren’t yet ready for ...
5
votes
1answer
367 views

Solr/Lucene is it possible to order first by relevance, and then by a second attribute?

In Solr/Lucene is it possible to order first by relevance, and then by a second attribute? As far as I can tell if I set an ordering parameter, it totally overrides relevance, and sorts by the ...
5
votes
2answers
1k views

Sunspot not indexing model after save

I have a model which deploys a delayed job that updates some of its attributes. The model is declared "searchable"... searchable do text :content, :stored => true end ... which I thought ...
5
votes
1answer
2k views

How do I set up a facet search with a many to many relationship using Sunspot?

I haven't implemented a search feature before and feel a bit stuck. I have a Sunspot search feature which finds results based on keywords - this works great - but I now want to implement the multi ...
4
votes
1answer
101 views

Rails Sunsport/Solr: Ordering on multiple-value field

I'm trying to do a priority "order by" on a multiple-value field using solr - any idea how I can accomplish the below? searchable do integer :skill_ids, :multiple => true end def ...
4
votes
1answer
181 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 ...
4
votes
1answer
632 views

Order Solr/sunspot search results by geo location

I'd like to be able to order my search results by score and location. Each user in the DB has lat/lot and I am currently indexing: location :coordinates do Sunspot::Util::Coordinates.new latlon[0], ...
4
votes
1answer
204 views

How to get query time from a Sunspot Search

I've implemented Sunspot to do searching on a Rails App. Is there any way to get the time the query took to execute? Eg. 10 records returned in 0.5 seconds I've been searching around the sunspot ...
4
votes
1answer
359 views

Full text search for irregular rapper names with Solr

I'm implementing full text search functionality on my rap website, and I'm running into some issues with rapper and song names. For example, someone might want to search for the rapper "Cam'ron" ...
3
votes
2answers
34 views

How can I use the latest version of the Sunspot gem with Solr Cell?

I've been trying (in vain) to get the latest version of the Sunspot gem (currently 2.0.0.pre.111215, incorporating Solr 3.5) working with Solr Cell. Currently I am using the older version of Sunspot ...
3
votes
1answer
161 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 => ...
3
votes
1answer
112 views

Sunspot: facets on location

I know it's possible to do stuff like that: bod = Time.zone.now.beginning_of_day facet :start_time do row :past do with(:from).less_than bod - 1.day end row :today do with ...
3
votes
0answers
385 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 ...
3
votes
1answer
196 views

How highlight found word with Sunspot?

I want to highlight found words in text, for example, as shown here. As far as I know I must follow these steps: 1) In my model, I must add :stored => true option to the field which I want to ...
3
votes
4answers
105 views

Order Solr results by degrees of friendship

I am currently using Solr 1.4 (soon to upgrade to 3.3). The friendship table is pretty standard: id | follower_id | user_id I would like to perform a regular keyword solr search and order the ...
3
votes
1answer
346 views

Sunspot: Sort/order facet results by attribute e.g. created_at

Following situation: Asset model: searchable do text :title text :description time :created_at integer :category_ids, :multiple => true, :references => Category end Controller: ...
3
votes
1answer
106 views

Rails Sunspot - Is it possible to retrive 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 ...
3
votes
1answer
169 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 ...
3
votes
1answer
551 views

advanced searching mongodb using mongomapper, sunspot/solr or sphinx?

I have am using mongodb with mongomapper to store all my products. Each product belongs to multiple categories that have many levels i.e. category, sub category etc. Each product has many search ...
3
votes
1answer
474 views

Solr partial document index update

I'm using Solr and Solr:Cell plugin to index and search rich text documents and metadata. DEFINITION: solr_document = tuple(rich_text_document, metadata1, metadata2) I want to reindex some ...
3
votes
2answers
493 views

Solr / Sunspot - determine indexing language at runtime, dynamically choose analyzers

I would like to use Solr + Sunspot to index a bilingual FR-EN site. The issue: model Post can be written both in French or in English. I can determine at runtime what is the language, but I also need ...
3
votes
2answers
574 views

Exclude draft articles from Solr index with Sunspot

I have an indexed model called Article and I don't want solr to index unpublished articles. class Article < ActiveRecord::Base searchable do text :title text :body end end How can I ...
3
votes
2answers
1k views

Sunspot / Solr full text search - how to index Rails associations

Is it possible to index through an association with Sunspot? For example, if a Customer has_many Contacts, I want a 'searchable' block on my Customer model that indexes the Contact#first_name and ...
2
votes
2answers
46 views

How do I use the edge version of Sunspot direct from Github instead of via Rubygems?

In order to overcome a bug with solr, I need to run a newer version than the one included in the Rubygems version of Sunspot. I noticed on Github that there has been a very recent commit which ...
2
votes
1answer
69 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 ...
2
votes
2answers
191 views

undefined method “results” with Sunspot Solr Search

I am using Rails 3.1 and have been using this railscast tutorial to implement sunspot. I am following everything right (i think) however when I run the search like this: class ProductsController < ...
2
votes
0answers
121 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 ...
2
votes
1answer
201 views

Boost in sunspot (solr)

In sunspot you can hint relevancy using the :boost option: text :name, :boost=>2.0 From this link, I think that the default boost is 1: http://lucene.apache.org/java/2_4_0/queryparsersyntax.html ...
2
votes
1answer
181 views

Low-Level Errors using Solr and Sunspot in JRuby

I have a simple DataMapper/Sinatra app running on JRuby as a search service. I'm getting sporadic error messages when searching (can't find particular rhyme or reason), wondering if anyone else has ...
2
votes
1answer
261 views

SunSpot Geosearching through assocation

class Office < ActiveRecord::Base has_many :users searchable do text :name location :coordinates do Sunspot::Util::Coordinates.new(latitude, longitude) end ...
2
votes
1answer
345 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 ...
2
votes
3answers
290 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
3answers
57 views

Java -Ant Integration Problem

I have created a Greenhouse Monitoring system using SunSPOTS. The code modules are written in java. The problem I face is that I need to run these programs using ant commands. Im able to do it through ...
2
votes
1answer
395 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]) } ...
2
votes
1answer
219 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
255 views

Rails - Sunspot conditional model indexing

Is there any way to determine on runtime if a model should be indexed or not? Something like: class Article < ActiveRecord::Base searchable :if => :indexable? do ... end private ...
2
votes
3answers
804 views

Sunspot_Rails Rake Aborted When Running Reindex

I'm unable to index my database for searching with sunspot_rails. I get the following error: Execute sunspot:reindex rake aborted! undefined local variable or method 'counter' I'm getting ...
2
votes
2answers
1k views

Geospatial Indexing with Redis & Sinatra for a Facebook App

I'm rebuilding Lovers on Facebook with Sinatra & Redis, and I want: Set operations for managing requests & relationships between users Geospatial indexing to display nearby app users ...
2
votes
1answer
333 views

rails sunspot nokogiri dependency

I am trying to follow the wiki instructions for getting sunspot on rails https://github.com/outoftime/sunspot/wiki/Adding-Sunspot-search-to-Rails-in-5-minutes-or-less Everything works fine until ...
2
votes
4answers
675 views

Debugging Solr search queries on Sunspot

How can I debug Solr search queries when using the Sunspot gem on Rails? I have some queries that are returning bizarrely high scores, and I'm trying to get to the bottom of why this is happening. ...
2
votes
1answer
356 views

Ordering results by relevance using Solr search

I'm new to Solr search and trying to get a grasp on how to handle ordering of results. I'm using Ruby on Rails together with the Sunspot gem to interface with Solr. I have an Article model, that has ...
2
votes
1answer
207 views

Changing params for search with rails and sunspot

This seems like a common task, I'm sure others have come across it. If my controller says this : def index s = Sunspot.search Organization do |query| query.keywords params[:q] unless ...
2
votes
4answers
284 views

How do you think Reddit handles reindexing their posts to keep the accurately in order?

I can't imagine it indexing per vote. It would strain the server innapropriately. I mention this because I'm trying to do something similar on a project of mine, and can't figure out what the best ...
2
votes
2answers
599 views

How can I make my 'sunspot-solr start' work?

I'm have problem to start my sunspot-solr. I'm fallowing instructions from this github/wiki So I made the installation part without trouble apparently. End then I tried to start it with: ...
2
votes
1answer
945 views

Rails 3 and Sunspot, rdoc or good tuto

I'm new to sunspot and rails 3, so I followed this little tuto: http://github.com/exempla/sunspot But there is not a lot of details, and the official github of outoftime/sunspot do not speak much ...
2
votes
4answers
3k views

Capture ANT output

Can anyone suggest to me the best way to capture the output from an ANT command? I'm writing some routing tests for sun spot devices. The command itself returns network statistics. I'm trying to ...

1 2 3 4 5