Tagged Questions
0
votes
1answer
20 views
With sunspot-rails, how do I conditionally index specific fields?
I would like to add a conditionally index some data inside the sunspot 'searchable' method in my model. Ideally it would look something like this:
searchable do
string :important_text
if ...
0
votes
1answer
34 views
Can Sunspot/Solr work with different RequestHandlers for different Rails classes?
I have one Rails app with two very different classes that are being indexed in Solr (using Sunspot). One is users and the other is a product catalog. There are specific RequestHandlers that I'd like ...
1
vote
0answers
20 views
Sunspot Solr partial search working in development but not in production after deploying
I am using sunspot solr for free text searching. I am trying to search trader from trader model. Here is the searchable block
searchable do
text :name
text :postcode
text :phone
text ...
1
vote
0answers
96 views
rake db:seed error for Rails app using MongoDB, sunspot_solr
I am working on a Ruby on Rails application that uses MongoDB, and I have implemented basic Sunspot functionality. Here is some information about my environment
Rails 3.2.11
Mongo 2.4.3
Sunspot ...
0
votes
1answer
28 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 ...
1
vote
1answer
49 views
Conditional indexing in rails sunspot
I am well versed with Solr and have used it previously using DIH. In the current application that I am working on my Solr document would consist of fields from 3 tables (because of RDBMS design of the ...
2
votes
0answers
150 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 ...
0
votes
1answer
38 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
41 views
Sunspot solr search works only from one page?
I am following the instructions mentioned here Rails 3: sunspot solr : adding search ability for every page
However it does not seem to work for me. I'm trying to implement a twitter like search ...
1
vote
1answer
101 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 ...
2
votes
1answer
77 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
73 views
how to search has_many relation field as criteria sunspot rails
i have a Project Model and a ProjectAttribute Model that basically have 3 fields: name, value, project_id, used to store key-value records about Project, i've tried the approach below but without any ...
0
votes
1answer
26 views
Dynamic Ordering in solr result using Sunspot
I want to implement dynamic ordering in my solr search.
For eg: if i am selecting the country as India, the members from India has to come in top of the result and members from other countries has ...
0
votes
1answer
66 views
Sunspot search has_one association, other model has no foreign key
I'm using Sunspot Solr to search events and each event has a group_id that refers to a Group object (multiple events can have the same group). I want to find the right events if the user searches the ...
0
votes
1answer
51 views
Sunspot failing to index an integer belongs_to id field
In the examples for sunspot sunspot.github.com, a belongs_to :blog association is indexed inside a searchable block with integer :blog_id. Later, the search can be constrained to a particular blog ...
0
votes
0answers
41 views
How to search sunspot rails for empty associations
Before, we were able to successfully find 'roots' in a tree by checking for an empty previous_id:
Phrase.search do
with :previous_id, nil
end.results
Now we successfully changed the model from ...
0
votes
0answers
117 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
30 views
sunspot searchable include not loading has_and_belongs_to_many association
in the following Sunspot Rails scenario the has_and_belongs_to_many association does not get loaded despite of the include directive:
has_and_belongs_to_many :predecessors, :join_table => ...
1
vote
1answer
71 views
sunspot searching
I know I had this search function working only a moment ago but have been redoing my search and navbar with bootstrap and now it looks good but the search function is not working!! I think it's ...
1
vote
2answers
101 views
Sunspot - Searching in multiple date ranges
Here's my problem, I'll try to be concise.
I have a model Course that has_many Planning.
A Planning has a start_date and an end_date.
I want to retrieve (with sunspot) all the Courses that have a ...
0
votes
1answer
39 views
Searching for a similar phrase on a RoR application
I am a beginner to Rails and I am using Sunspot for implementing search functionality.
I want to search for patients names. Up to now im searching using the fulltext method and it is working. However ...
0
votes
1answer
56 views
Can I use “-” in FQs using sunspot gem
I've inherited a solr installation that doesn't really work for our data. Before re-building, we want to roll out a simple search: filtering on any of our product inventory with size 8, shoe size 9. ...
0
votes
1answer
63 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
66 views
Ordering the search result - sunspot rails
I have two models, an School model, a Price model. A School has one price.
Here is my School-controller, I eager load the price model with school-model:
def index
@search = School.search(:include ...
1
vote
1answer
266 views
Sorting the result - sunspot rails
I have two models, School model and Price model. Every school has a price. Right now I get back the result I want, but I like to implement a sorting function that sorts the highest price for a school ...
0
votes
1answer
42 views
Sunspot model assocation
I have two models, an School model and Price model. Every school has a price. I would like to return in the search result school with its prices. I am using rails and sunspot.
School-controller:
...
2
votes
1answer
78 views
Solr+Sunspot: Having different boost on tags of a record — possible?
I have a model, say Post. It has tags. Each of the tags has a weight that should be reflected in search.
Can I somehow store these tags and boost each of them with its weight?
Example:
Post title is ...
0
votes
1answer
40 views
Sunspot - search.results throws undefined method `match' for nil:NilClass
I an using Sunspot and have the following code
search = UserSearchKeywords.search do
fulltext "#{params[:search_keyword]}"
adjust_solr_params do |params|
params[:fl] = "user_profile_id"
end
...
2
votes
1answer
50 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 ...
1
vote
2answers
147 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
47 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
2answers
215 views
how to get value selected by using select_tag with options_from_collection_for_select and pass it to controller
I have built a form search like this:
<%= form_tag({ controller: 'questions', action: 'search_topic' }, method: 'get') do %>
<%= select_tag 'search_topic', ...
0
votes
1answer
119 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
220 views
Sunspot Search with Multiple Types vs. Single Type
What are the pros and cons of Sunspot Search with Multiple Types vs Single Type? What is the preferred way?
I've looked through a lot of docs and can't seem to find the answers.
...
0
votes
0answers
81 views
how to merge two or more columns in sunspot solr
I have four models. That is brands, departments, categories and product_details. brands table contains id, name. departments contains id, name. categories contains id and name. product_details ...
0
votes
1answer
50 views
How to avoid dropping existing index when reindexing
When reindexing Sunspot, the existing index is cleared/dropped first. This means user will see blank search results for a short time, which is bad for production environment. Is there a way to do ...
0
votes
0answers
83 views
How to search by using group by clause for two or more fields using sunspot solr
Please any one tell me is it possible put conditions on the associated fields using sunspot solr. I have four models. That is brands, departments, categories and product_details. brands table contains ...
0
votes
1answer
84 views
Sunspot fulltext search - showing search parameter
I would like to show the search parameter of a search object. I using rails and sunspot.
Lets say I have this book application where store a bunch of books and whould like to search the book by them ...
1
vote
0answers
78 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
196 views
How to user sunspot autocomplete for SearchController text_field_tag
I need to show a list of suggestions as search term is being typed in. I have a simple SearchController#index that simply receives via GET anything been passed through the text_field_tag field. I'm ...
0
votes
1answer
218 views
how to get work sunspot rails with heroku
Hi i am using sunspot_rails gem for searching.It is working fine on my local machine but there is problems with configuring it with heroku.And i have this error
Errno::ECONNREFUSED ...
0
votes
1answer
169 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
1answer
213 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
211 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
2answers
428 views
autocomplete in Solr and sunspot
I'm building a website with RoR and I use Sunspot and the solr Search Engine. I needed to use autocomplete functionality but I couldn't.
I knew that Solr has a new thing called suggester but I don't ...
0
votes
0answers
144 views
Why am I getting a NullPointerException when using Sunspot Solr in Ruby on Rails?
I recently upgraded Rails in my local project to 3.2.8 and now when I do any search I get the following error:
RSolr::Error::Http - 500 Internal Server Error
Error: java.lang.NullPointerException
...
1
vote
1answer
193 views
How can I set Sunspot to search for sequences of characters instead of words?
Please, bare with me, I am new to Sunspot.
I wanted to understand whether Sunspot, in standard mode, searches for words or sequences of characters in full-text search and how to make it search for ...
0
votes
1answer
527 views
Faceted Search with Sunspot
I'm trying to implement faceted search with Sunspot, but I must be doing something wrong.
class Product < ActiveRecord::Base
attr_accessible :category, :color, :condition, :item_no, :size
...
0
votes
1answer
70 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
1answer
63 views
Solr: what is the impact of number of field elements on the index/search performance?
What is the impact of number of field elements on the index/search performance?
We have the following document structure with some documents having upto 400 field elements.
We have seen the solr ...




