Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Searchify (IndexTank) in my rails app. Everything works perfect with separate models. I added tanker conf to my models (ex. Question model):

class Question < ActiveRecord::Base
  attr_accessible :name, :user_id
  self.per_page = 2

  has_many :comments
  belongs_to :user

  include Tanker
  tankit 'uaebb_dev' do
    indexes :name
  end

  after_save :update_tank_indexes
  after_destroy :delete_tank_indexes
end

Here is action from question controller

def search
  @questions = Question.search_tank(params[:search])
  render :index
end

This code works perfect. But I have several models (Question, Item ...) which have search functionality. Is there way to search through all models in app (like general search)? I know that I can do:

@questions = Question.search_tank(params[:search])
@items = Item.search_tank(params[:search])
....

But it doesn't look like very good solution. Is there any better way using tanker gem?

share|improve this question
Actually I've found solution already. @results = Tanker.search([Question, item], 'new') Don't know if it is the best one – jizak Dec 26 '12 at 13:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.