Association count sorting

6 views
Skip to first unread message

badnaam

unread,
Jul 19, 2010, 10:22:19 PM7/19/10
to Ruby on Rails: Talk
I have 3 models GrandPa, Pa, Kid

GrandPa => has_many :pas
Pa => has_many kids

When I list GrandPa I would like to present the following

*********************************************
1 - GrandPa_Name

2 - List of Pas sorted by the number kids each pa has in descending
order
**********************************************

How do I accomplish #2?

Thanks

Angel Robert Marquez

unread,
Jul 19, 2010, 10:42:31 PM7/19/10
to rubyonra...@googlegroups.com
Kid has one pa and has one grandpa through pa
Pa has one to many  kids and has one grandpa
Grandpa has one to many kids and has one pa

<%= :name[gp]

?pa = kid if from gp?

I think you should just have one model with a foreign key to parent and quantity of child including nil.  


--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.


badnaam

unread,
Jul 19, 2010, 10:51:48 PM7/19/10
to Ruby on Rails: Talk
Thanks.
> Grandpa has one to many kids and has one pa
No, Grandpa has_many pas

I didnt quite get how you proposed listing the pas (and kid count for
each pa) that belong to a certain grandpa

On Jul 19, 7:42 pm, Angel Robert Marquez <angel.marq...@gmail.com>
wrote:
> Kid has one pa and has one grandpa through pa
> Pa has one to many  kids and has one grandpa
> Grandpa has one to many kids and has one pa
>
> <%= :name[gp]
>
> ?pa = kid if from gp?
>
> I think you should just have one model with a foreign key to parent and
> quantity of child including nil.
>
> On Mon, Jul 19, 2010 at 7:22 PM, badnaam <asitkmis...@gmail.com> wrote:
> > I have 3 models GrandPa, Pa, Kid
>
> > GrandPa => has_many :pas
> > Pa => has_many kids
>
> > When I list GrandPa I would like to present the following
>
> > *********************************************
> > 1 - GrandPa_Name
>
> > 2 - List of Pas sorted by the number kids each pa has in descending
> > order
> > **********************************************
>
> > How do I accomplish #2?
>
> > Thanks
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Ruby on Rails: Talk" group.
> > To post to this group, send email to rubyonra...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > rubyonrails-ta...@googlegroups.com<rubyonrails-talk%2Bunsu...@googlegroups.com>
> > .

Angel Robert Marquez

unread,
Jul 19, 2010, 10:58:58 PM7/19/10
to rubyonra...@googlegroups.com
Thanks.
> Grandpa has one to many kids and has one pa
No, Grandpa has_many pas
How is this possible? That's like saying I have two left arms.  

I didnt quite get how you proposed listing the pas (and kid count for
each pa) that belong to a certain grandpa
Because the sort is to easy to explain. What you're sorting and why is the problem.  So, now that I have two left arms how do I sort them by thumb length on my right arm. Well, I guess get a mirror.  
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.

badnaam

unread,
Jul 19, 2010, 11:14:14 PM7/19/10
to Ruby on Rails: Talk
Here is the answer if someone else runs into this..

GrandPa.all do |gpa|
p gpa.name
gpa.pas.all(:joins => :kids, :select => "pas.*, count(pas.id) AS
kid_count"
:group => :id, :order => "kid_count DESC").each do |pa|
p "#{pa.name} : #{pa.kid_count}"
end
end


On Jul 19, 7:58 pm, Angel Robert Marquez <angel.marq...@gmail.com>
> > <rubyonrails-talk%2Bunsu...@googlegroups.com<rubyonrails-talk%252Buns...@googlegroups.com>

Colin Law

unread,
Jul 20, 2010, 4:22:28 AM7/20/10
to rubyonra...@googlegroups.com

A crude way (untested), I am sure there are better as I suspect this
will call count zillions of times. It should get you going and you
can refactor when you want to.
grandpa.pas will give you an array of pas, then simply sort this array
by the number of kids.
sorted = grandpa.pas.sort_by { |p| p.kids.count }

Colin

Michael Pavling

unread,
Jul 20, 2010, 4:39:04 AM7/20/10
to rubyonra...@googlegroups.com
On 20 July 2010 04:14, badnaam <asitk...@gmail.com> wrote:
> Here is *AN* answer if someone else runs into this..

Your solution may certainly work... but is a bit "imperative" in
coding terms, and does introduce an n+1 problem.

Rails offers a feature called "counter_cache" on associations - which
gives you a column in associate keeping track of the amount of
"belonging" records.

Have a look for it in the manual here:
http://rails.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html

If you use it, you can then just do a normal find without the block
and order by the counter-cache column, which avoids all the extra SQL
counts.

Reply all
Reply to author
Forward
0 new messages