Stefan Scotzniovsky
2006-Apr-29 08:45 UTC
[Rails] counter_caching clobbered when preloading association ?
Hi, I''m trying to use counter caching in a tree structure (in this case Bob Silva''s threaded list). This is the definition: class Folder < ActiveRecord::Base acts_as_threaded has_many :files end I would like each parent to have the total count of all the childrens member. So when inserting a new file I update the file_count following the parent_id through all the folders until I reach root. (Looking into the db I see the correct values so this seems to work). But I hit a problem when trying to read the file_count value from the database: the code: @folders = Folder.find(:all, :order => ''root_id desc, lft'') will return the file_count value as set in the database the code: @folders = Folder.find(:all, :include => :files, :order => ''root_id desc, lft'') will return a file_count value of zero for all parents So it seems that when I include the association to query folder and files together the count gets recalculated. (my parents folders currently only have other sub folders, but no files associated, so the count on just that level is effectively zero.) Is this intended? How could I work around this (I really like to use the :include instead of loading them all separately) ? thanks stefan -- Posted via http://www.ruby-forum.com/.
Are you Stefan who was in Kyoto? If so, could you give me an e-mail via this site as I couldn''t send you e-mail via this site? And if you can remember who I am, please write my name in the mail. I don''t want to write much personal information of you and me, so I will wait for your response. M
Yes I was in Kyoto but sorry don''t remember, know a few persons by your name. Sent me a direct email to sscotzn-ihVZJaRskl0ZlNGKQdmtBQ@public.gmane.org My sincere apologies to the group for abusing this mailing list for personal purposes, wont do it again ;-) stefan -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---