I’m using the acts_as_follower gem, and I’m wondering how can I order my users by the number of followers they have? I’m not really sure where to start with this.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If user
acts_as_followable:Per Benedikt Deicke’s comment below, this solution results in N+1 queries. To prevent this situation, enable eager loading of
followingsfor allUserqueries.