Rails version: 3.1.10
Hi. I have a user model with a has_many relationship to an account model. For one particular user, there are 5 accounts. However, when I ask for the related models, I only get 3 back:
> user.accounts.class
=> Array
> user.accounts.count
(0.2ms) SELECT COUNT(*) FROM "accounts" WHERE "accounts"."user_id" = 1
=> 5
> user.accounts.all.class
=> Array
> user.accounts.all.count
=> 3
I figure there's some ActiveRecord caching going on because the call to user.accounts.all doesn't generate a database query. But the thing that really stumps me is even though user.accounts.class and user.accounts.all.class are both equal to Array, calling the :count method does two entirely different things.
I'm fairly new to ruby, but I know you can do some magic with defining methods on objects on the fly. Is that what's happening here? Is ActiveRecord giving me a modified Array in the first case?
record-cachegem, and there's acache_records key: "account", index: [ :user_id ], store: :sharedin theAccountmodel. Commenting that out made all the difference. – Kevin Cantwell Feb 3 at 3:09Users.accounts.all.count. That will call the count method of the Array Class whereasUsers.accounts.allcalls the count method of ActiveRecord class. In activerecord method chaining the order of the methods matter sometimes. – Manoj Monga Feb 3 at 12:33Users.accounts.countcalls the count method of Active... Also above two methods should return the value 5. So there may be some problem in active record. but you can try posting the query and result of theUsers.accounts.allhere for more help. – Manoj Monga Feb 3 at 12:48