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
28 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 ...
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, ...
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
1answer
46 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
107 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 ...
-1
votes
1answer
125 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 ...
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
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
153 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 ...
6
votes
2answers
186 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 ...
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 ...
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 ...
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: ...
1
vote
0answers
73 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
1answer
185 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
202 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
53 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
108 views

Matching 2 out of 3 terms in Sunspot and WebSolr

THe partial matching on my search is not working correctly. When I type in "Dublin Ireland" into my search then it correctly returns all the results in Dublin, Ireland. However, when I type "County ...
0
votes
2answers
212 views

Why I cannot stop the solr from running?

sunspot_solr version that I am using is 1.3.3 I am using sunspot_solr gem to start and stop a local instance of Solr. I use the following command to start it: rake sunspot:solr:start and the ...
0
votes
1answer
69 views

Is it possible to merge two association tables in Sunspot solr

I have four tables. They are Brands, departments, categories and product_details. The models are Brand model class Brand < ActiveRecord::Base has_many :product_details, :dependent=>:destroy ...
0
votes
0answers
25 views

Finding frequency of words in database using sunspot

Is it possible to find the frequency of words in a huge string data present in a database using sunspot?
1
vote
1answer
170 views

settings up sunspot solr in production amazon ec2 with rubber

I think sunspot is super awesome, but I feel like in all the screencasts and descriptions the way to set it up in a production environment is not covered that much. I'd say I'm still fairly new to ...
2
votes
0answers
217 views

Routing Error, undefined method `searchable' for #<Class…> with Sunspot Solr / Rails

I have added Sunsport Solr to my Rails application. The model on which I want to search is throwing a Routing Error exception, complaining of an undefined method 'searchable' for ...
0
votes
1answer
91 views

Rails 3.2 sunspot_rails and sunspot_solr wont get started on Windows

Edit: Downloaded the zip and installed it manually, now everything works fine. Unfortunately it seems to be impossible to set up Sunspot and Solr on Windows. Running rake sunspot:solr:run works ...
0
votes
0answers
71 views

using quotes to get phrases

I understand that when doing a keyword search, that using quotes treats the quoted string as a phrase. Say I am indexing the subdivision field for property records and one of them has a subdivision ...
5
votes
2answers
403 views

Sunspot Solr Autocomplete not working Ruby on Rails 3.2.3

I need helping getting Autocomplete working on my Solr Search bar. Am, using this https://github.com/xponrails/sunspot_autocomplete Followed the steps & it doesn't work. I get stuck at my search ...
0
votes
2answers
309 views

Undefined field error in sunspot_solr grouping clause

I have product_details table which belongs to categories. product_details has fields like id, name, price, discount and category_id and categories table has fields like id and name. Am using mysql ...
0
votes
1answer
80 views

Is it possible to add “search” function to the messaging gem “Mailboxer”?

I'd like to implement "text search function" over body part of tons messages. If anyone knows how to implement that to "Mailboxer", please show me how. I have no idea how it goes. When I access ...
1
vote
1answer
297 views

Trying to get rake sunspot:solr:run to execute

I am trying to get the gems sunspot_rails and sunspot_solr up and running. I have all the most recent gems downloaded and implemented the patch suggestion from ...
0
votes
0answers
89 views

Is it possible to use multiple mysql databases in sunspot solr search engine

I came to know we can use multiple databases for a single project with the help of this link. I want to know is it possible for us to use sunspot solr search engine to this type of project. Is it ...
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 ...
1
vote
1answer
178 views

Solr: autoCommit what happens if Solr goes down before commiting

We enabled autoCommit in solrconfig.xml. <autoCommit> <maxDocs>5000</maxDocs> <maxTime>5000</maxTime> </autoCommit> Now wondering we are what happens when ...
0
votes
1answer
338 views

how to run sunspot reindex in background for every four hours

I want to execute rake sunspot:reindex RAILS_ENV=production command for every four hours. To achieve this i have written simple bash script using shell programming. I will run successfully in terminal ...
1
vote
0answers
112 views

Sunspot_solr rails gem indexing incorrectly for one type in production environment only

I recently implemented an autocomplete/autosuggest feature driven by solr. My solr implementation is using the rails sunspot gems. The autocomplete search does not go through rails at all, but goes ...
0
votes
1answer
137 views

how to configure edismax handler in sunspot?

can any one explain how to start with using edismax request handler in sunspot? I want to use wild card search in my application. currently dismax handler is there.i searched and found that edismax ...
3
votes
2answers
352 views

View raw Solr tokens for a single field on a single document

I'm debugging my Solr schema and I'd like to see the results of tokenizing a specific field. For a simplified example, if I have: <fieldType name="text" class="solr.TextField" ...
0
votes
2answers
113 views

No Errors but no speed increase using sunspot gems

I ran speed tests comparing the results between the traditional Post.all(...) and Sunspot's Post.search(...) against a table with about 3000 records. In both cases, it takes 12 seconds to load. ...
2
votes
1answer
297 views

How to write searchable method for belongs_to assocication using sunspot_rails gem

I have two models. one is brand and another is product_detail. brands table has id and name fields and product_details table has fields id, name,price,discount and brand_id. brand has many ...
1
vote
1answer
627 views

Solr (sunspot) Query with Hyphen and Stop Words

I am using the Ruby Sunspot gem with Solr 1.4.1 I have an issue around searching with a hyphen. When I run a search for "foo bar bla" the expected result is returned. When a hyphen is included in ...
0
votes
1answer
5k views

SocketError (getaddrinfo: Name or service not known) - Sunspot/Solr Rails development

I have had lots of trouble with deploying my rails 3.0.10 application to Ubuntu 10.04 server with Passenger, Capistrano, nginx and MySQL (and even more trouble with apache2). After downgrading rake to ...
0
votes
2answers
299 views

Rails 3 - Solr doesn't search an items

In the Photo model I have following simple rule: searchable do string :note end and I try to search some string with Solr (simultaneously in two tables). This is the output of Solr query in ...
1
vote
1answer
236 views

Rails Sunspot search for items tagged with the tag

I am working in rails 3 . IN one of my model , i have acts_as_taggable_on :hashtags and for indexing i have searchable :auto_index => false do text :tags do ...
1
vote
0answers
254 views

multi-word search in solr (sunspot) for returning closest match

I'm using sunspot to search my rails app, but I'm not getting the results I'm hoping for. I've got the index built on my 'classes' models name field, so I have for example Engineering Electrical ...
0
votes
1answer
760 views

SEVERE: Could not start SOLR. Check solr/home property java.lang.NoClassDefFoundError: org.apache.solr.core.JmxMonitoredMap

I have this error when running rake sunspot:solr:start And then seeing at log/sunspot-solr-development.log SEVERE: Could not start SOLR. Check solr/home property java.lang.NoClassDefFoundError: ...
4
votes
2answers
404 views

Sunspot — Boost records where matches occur early in the text

For example, let's say there is a record in my DB that has the text "Hormel Corporation" and my search term is something like "Hormel Corned Beef 16 Ounces". As my current configuration stands, the ...

1 2