Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
6answers
6k views

Full Text Searching with Rails

I've been looking into searching plugins/gems for Rails. Most of the articles compare Ferret (Lucene) to Ultrasphinx or possibly Thinking Sphinx, but none that talk about SearchLogic. Does anyone ...
7
votes
2answers
2k views

How Do I get searchlogic to work with rails 3?

I put searchlogic in my gemfile... and now my rails server won't start :( this is the errormessage gems/ruby-1.8.7-p299/gems/activesupport-3.0.0/lib/active_support/core_ext/module/aliasing.rb:31:in ...
6
votes
2answers
2k views

Rails: searchlogic search with or conditions

I'm using the 'binarylogic-searchlogic' gem in version 2.3.5 along with Rails 2.3.4. What I want to do is performing a search on a model for a specified value over multiple attributes. I achieve ...
5
votes
4answers
3k views

Will searchlogic work with Rails 3?

If not what are my alternatives?
3
votes
1answer
207 views

How can I make a searchlogic named scope return DISTINCT (non duplicates?)

I have a searchlogic that searches for not_null on an association that can occur many times, but I only want to display one UNIQUE/DISTINCT instance of the object: Company.contact_emails_id_not_null ...
3
votes
1answer
348 views

What is the difference between searchlogic and other fulltext search plugins?

I am looking for an alternative to acts_as_solr or thinkingsphinx for fulltext search in my Rails app. Came across searchlogic. Does it support indexing? I am planning to host my app on heroku and I ...
3
votes
5answers
2k views

Combine two named scopes with OR (instead of AND)

I want to find all Annotations whose bodies are either: Equal to "?" or Like "[?]" What's the best way to do this? I would like to use SearchLogic if possible, but though SearchLogic allows you ...
2
votes
2answers
111 views

Searchlogic: Strange behaviour when combining scopes with OR

I'm currently implementing a search form in our users database. I would like to search by id , by login or by email. Naturally, I think that the best aproach is to combine scopes and simplify the ...
2
votes
2answers
563 views

Rails 3 Search: Searchlogic vs Thinking_Sphinx

In the past, I have used thinking_sphinx with Rails 2.3 and I found no problems with it. Is it worth considering a new search option? What are the differences between searchlogic and thinking_sphinx? ...
2
votes
2answers
373 views

How to sanitize form params for use with Searchlogic? [Rails]

Example form <% form_for @search do |f| %> <ul> <li> <%= f.label :item_number_equals, "Item number" %><br /> <%= f.text_field :item_number_equals ...
2
votes
1answer
273 views

Searchlogic and :has_many, :through =>

I'm using Searchlogic to search on many fields in a database. One of those fields is a :has_may, :through => relationship, and I can't get it to work. Here are the relevant parts of the models: ...
2
votes
1answer
214 views

searchlogic with globalize2?

Given there is a model: class MenuItem < ActiveRecord::Base translates :title end and searchlogic is plugged in, I'd expect the following to work: >> MenuItem.search(:title_like => ...
2
votes
1answer
1k views

Using searchlogic with will_paginate

EDIT Looks like I figured it out - I had to call paginate after the call to all from Searchlogic. I'm trying to use both of these tools to enable users to search contacts and return a paginated list ...
1
vote
1answer
17 views

Searchlogic: how do I define a namedscope so that I can use OR on an associated model?

So, I found this: Searchlogic OR condition results in undefined method But that only works for fields on the model your are searching on directly. I have a suscription model, but I want to search ...
1
vote
2answers
108 views

Ruby on Rails: 2.3.8: How do I get searchlogic to work with bundler?

Currently, I get this error: NameError: undefined methodmerge_joins' for class Class' i'm just doing gem "searchlogic" and bundler says that it is using version 2.4.28 So... what in the right ...
1
vote
1answer
103 views

Changing number of returned search results with Rails and Ajax

I recently changed the pagination with will_paginate in my Rails (2.3.4) app to use Ajax for the pagination and records per page. The pagination was done using the method described here: ...
1
vote
1answer
90 views

How to add a GROUP_BY clause in a Searchlogic query?

I'm using Searchlogic with Rails 2.3.5 and I need to do add a GROUP_BY clause with 2 columns to my query. I tried: User.search.group = "column1, column2" # Undefined method 'group' ...
1
vote
1answer
152 views

Searchlogic 'OR' conditions on associated records

Rails 2.3.5 Searchlogic 2.3.27 I have the following models; class Outbreak < ActiveRecord::Base has_many :bacterial_agents, :dependent => :destroy has_many :bacteria, :through => ...
1
vote
3answers
328 views

Search many fields with will_paginate / searchlogic

How do you effectively search among many fields in a model? # user.rb model def self.search(search, page) paginate :per_page => 20, :page => page, :conditions => ['name like ? ...
1
vote
1answer
80 views

SearchLogic problems due to caching of method calls

I am trying to use the searchlogic gem to perform searches over a couple tables Post has_many assets. I need it to perform left outer joins rather than inner joins in the event of a non-existant ...
1
vote
0answers
62 views

Searchlogic Results Duplicating with Each Association

When I chain searchlogix conditions that associate different tables, the results duplicate. When I chain searchlogix conditions querying fields from a single table, the results work perfectly. Below ...
1
vote
2answers
721 views

rails trim whitespace from searchlogic text field

This works: Baseline Controller @search = Baseline.search(params[:search]) @baselines = @search.paginate :page => params[:page], :per_page => params[:per_page] baseline index view <% ...
1
vote
1answer
70 views

Search Logic removing records with no association from results when ordering by that association

I'm using search logic to filter and order my results but it removes records from my results when I order by a association and when that association is not always present for all records. For example ...
1
vote
2answers
109 views

case insensitive in searchlogic

Can Searchlogic search with case insensitivity? Thanks, Jay
1
vote
1answer
82 views

Combining Searchlogic named scopes with OR

Is something like this possible? Product.price_greater_than(10000).or_tags_name_equals('luxury') The wiki doesn't help much on this... I saw in the wiki: ...
1
vote
4answers
165 views

Mysql question: is there something like IN ALL query?

For example this query: SELECT `variants`.* FROM `variants` INNER JOIN `variant_attributes` ON variant_attributes.variant_id = variants.id WHERE (variant_attributes.id IN ('2','5')) And ...
1
vote
1answer
405 views

Rails and Searchlogic: finding products that matching all given product categories by using searchlogic condition

I have a model Publication and a model Category in my Rails app. Both are connected with a has_and_belongs_to_many association. Now I would like to search publications that match one or more ...
1
vote
3answers
729 views

Reusing named_scope to define another named_scope

The problem essence as I see it One day, if I'm not mistaken, I have seen an example of reusing a named_scope to define another named_scope. Something like this (can't remember the exact syntax, but ...
1
vote
2answers
1k views

Date conditions using Search logic

The Rails plugin - Searchlogic, from binary logic - offers the ability to filter by date. I have my form set up like so... <% form_for @search do |f| %> <%= f.label :start %> <%= ...
1
vote
1answer
417 views

Best way to implement simple sorting / searching in Rails

What's the best way to implement an interface that looks like this in rails? Currently I'm using Searchlogic, and it's a tad painful. Problems include: Making sure certain operations remain ...
0
votes
1answer
29 views

Searchlogic gem install -> installs gems that aren't searchlogic (and then doesn't install searchlogic)

% gem install searchlogic -v2.4.28 Fetching: arel-2.2.1.gem (100%) Fetching: tzinfo-0.3.31.gem (100%) Successfully installed activemodel-3.1.3 Successfully installed arel-2.2.1 Successfully installed ...
0
votes
0answers
19 views

Searchlogic use dropdown box / select for filled empty fields

Currently I'm using 2 checkboxes on a form to filter out records as follows: <%= f.check_box :neighbourhood_info_not_null %> <%= f.check_box :neighbourhood_info_null %> This ...
0
votes
1answer
25 views

Rails, how to use searchlogic to reorder returned objects

So I have had various forms of this working in the last while, but never all working together. for reference I have categories / Brands / Products, with the right relationships working: the site is ...
0
votes
4answers
61 views

How do you do this in mysql or rails

Say you have a posts table and a tags table, and both are related by a post_tags table. so posts has id/subject/body columns tags has id/name post_tags has id/post_id/tag_id in rails ...
0
votes
0answers
56 views

Rails 3 searchlogic with several tables

I would like to know if is it possible to use searchlogic with several models? My Models are like company has_many departments has_many employes. i would like to have the possibility to search ...
0
votes
0answers
64 views

undefined method merge joins with search logic 2.4.28 and rails 2.3.8 (through bundler)

So... this is the last version of search logic that can be used with rails 2.3.8. But, when I try to use it via bundler, I get this error: NameError: undefined method `merge_joins' for class `Class' ...
0
votes
0answers
34 views

Rails 3, Searchlogic + General Search textbox

I need advice about my method to have a search textbox in my layout i put in my application.html.erb this form_for <%= form_for @search, :url => {:controller => 'search_engine', :action ...
0
votes
1answer
61 views

RoR: Search Logic: How do I do a left join, instead of the default left inner join?

I'm doing sorting based on a field that references another table (and sorting on that other table's 'name' field). The issue is that when my first set of objects has some entries that don't have a ...
0
votes
1answer
28 views

RoR: Search Logic, How do I use OR with two different values on the same field?

I want to do something similar to : @search(some_condition or some_other_condition) this is how the internet says to use OR ...
0
votes
0answers
34 views

Can't chain these search conditions in searchlogic

I'm trying to create a search page which will search for first, middle or last name of the student. institutions_id field of the student is already in session and given student should have exactly the ...
0
votes
1answer
111 views

can not open 'rails console' after 'gem install searchlogic'

lhdgriver@lhdgriver-1015PW:~/prog/social$ bundle show searchlogic /home/lhdgriver/.rvm/gems/ruby-1.9.2-p180/gems/searchlogic-2.4.28 lhdgriver@lhdgriver-1015PW:~/prog/social$ rails console ...
0
votes
2answers
160 views

Searchlogic OR condition results in undefined method

I'm sure that I'm overlooking something since this is my first time using Searchlogic. Whenever I use a statement like Listing.city_like_or_state_like(params[:search]) in my controller, Rails ...
0
votes
2answers
374 views

How can I search through a has_many association in Rails 3 (meta_where or railslogic?)

I have a model called UserHasMessages where: belongs_to :message belongs_to :user And User.rb model is: has_many :messages, :through => :user_has_messages I want to find Users where the ...
0
votes
1answer
194 views

Can I do an 'in' search with searchlogic/metasearch in Rails 3 passing an array?

I am using the acts_as_network gem which allows me to get all the friends for a User through 'User.friends' I want to create a 'friend feed' showing all the recent events for all of the friends by ...
0
votes
1answer
210 views

Inspect MetaSearch columns

Regarding MetaSearch, I would like to extract "human" names from the search parameters. For example, when the params[:search] has non-blank values for the following: - title_contains - ...
0
votes
0answers
56 views

Rails searchlogic plugin does not like change to associated model

I have an ActiveRecord model Incident. I have been successfully using the searchlogic search helper :title_or_service_like to return a set of incidents. In particular, if the service field matches the ...
0
votes
0answers
53 views

Ruby on rails / Ajax : is there any way to force observe_form into getting RJS Templates using GET method instead of default POST?

On my users/index page I'm using SearchLogic in order to easily find users (all users are displayed, by default, if no search criteria is filled). What I want is to update search results when I fill ...
0
votes
1answer
176 views

How to group conditions between parenthesis in Searchlogic?

Is there a way to create grouped conditions (between parenthesis in raw sql) in searchlogic? I've found this, but seems to be deprecated in Searchlogic 2.x (using 2.4.27) Thanks
0
votes
2answers
196 views

Chaining searching and sorting together in rails using serachlogic

My code is very similar to that in railscasts #240 The differences are that I am using rails 2.3.10 so I am not using 'where'. Instead I am using serachlogic and my model looks like this... ...
0
votes
0answers
164 views

Ruby on Rails: converting SQL query to search logic

How would one convert this to searchlogic? SELECT c.id, c.name as 'library_name', c.visibility as 'public', c.updated_at, COUNT(case when p.status = 2 then ...

1 2