Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have rails app which has a list of users. I have different relations between users, for example worked with, friend, preferred. When listing the users i have to decide if the current user can add a specific user to his friends.

     -if current_user.can_request_friendship_with(user)
      =add_to_friends(user)
    -else
      =remove_from_friends(user)

   -if current_user.can_request_worked_with(user)
      =add_to_worked_with(user)
    -else
      =remove_from_worked_with(user)

The can_request_friendship_with(user) looks like:

  def can_request_friendship_with(user)
   !self.eql?(user) && !self.friendships.find_by_friend_id(user)
  end

My problem is that this means in my case 4 query per user. Listing 10 users means 40 query. Could i somehow eager load this?

share|improve this question

1 Answer

up vote 0 down vote accepted

Let's we have got random_users and current_user
so non_firends = random_users - current_user.freindships will return in two queries all non_friends from users query.

Actually you can preload all your friends and use include? method for friendships Array:

@friendships = current_user.friendships

def can_request_friendship_with(user)
  !self.eql?(user) && @friendships.include? user
end
share|improve this answer
Your solution is not the best, but the idea behind it is good. In can_request_friendship_with function we cannot access that instance variable, but that's not a problem. – dombesz May 10 '10 at 17:19
It's wasn't a complete solution. What I was talking about is excluding your problem from db level – fl00r May 10 '10 at 17:34

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.