Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
966 views

Problem with counter_cache implementation

I'm getting 'rake aborted! ... posts_count is marked readonly' errors. I have two models: user and post. users has_many posts. posts belongs_to :user, :counter_cache => true I have a migration ...
4
votes
1answer
108 views

Track sum of some fields in the association - “sum_cache”

I have tables 'orders' and 'items' with has_many association in the model. class Order < ActiveRecord::Base has_many :items class Item < ActiveRecord::Base belongs_to :order Item consists of ...
4
votes
1answer
459 views

Rails 3: Update counter_cache only if published

This is a tricky question. I have a project with multiple content types, such as Article, Review, etc. Each content type has comments, comments are polymorphic as they can belong to any content type. ...
3
votes
1answer
235 views

counter_cache in single table inheritance

I am wondering if the counter_cache would work in single table inheritance. For these models: class User has_many :questions end class Question belongs_to :user, :counter_cache => true end ...
3
votes
1answer
1k views

counter cache doesn't update but I can save to the parent and the child

I added a counter cache but can't get it to update. But I can update the parent - the Blog Post model by adding a new blog post - and I can update the child - Comments model - by adding a new comment. ...
2
votes
2answers
149 views

Rails 3 and Rspec: counter cache column being updated to 2 when expected 1

I'm testing with Rspec a model named Solutions which has many Likes. Solution stores how many Likes it have (counter_cache). It has a "likes_count" attribute (and respective db field). When I create ...
2
votes
1answer
229 views

Issue with running a migration on heroku

This is a follow up to this post Rails, data structure and performance, where I have attempted to create a Counter Cache on Rails. To not have it to default 0, I have also added updating the column ...
2
votes
2answers
206 views

How can I invoke the after_save callback when using 'counter_cache'?

I have a model that has counter_cache enabled for an association: class Post belongs_to :author, :counter_cache => true end class Author has_many :posts end I am also using a cache fragment ...
2
votes
2answers
369 views

Ruby on Rails counter cache error

I get the error Unknown key(s): counter_cache when trying to implement a counter cache column in my RoR app. I implemented the model associations in this question: Model association question Here's ...
2
votes
1answer
624 views

counter_cache not decrementing for has_many associations in ActiveReord

My Rails 3 app has 2 models and a third that's join table between them and their has_many relationships. Basically, User and Show are joined by SavedShow, allowing users to save a list of shows: ...
2
votes
2answers
666 views

Rails Models counter_cache column initialization

I'm using rspec for testing and hornsby scenarios for object graphs used in tests. Is it good practice to initialize counter cache columns to 0 value instead of leaving them uninitialized (nil)? Or ...
1
vote
1answer
124 views

counter_cache with conditions

I know I can use callbacks but this should be feasible. I did lengthly searching and no result. This is what I thought would have worked. def User < ActiveRecord::Base has_many :documents ...
1
vote
1answer
110 views

How to use counter_cache in Rails when some conditions on the count column

I have some code here class group < ActiveRecord::Base has_many :memberships, :dependent => :destroy has_many :members, :through => :memberships, :source => :person ...
1
vote
0answers
162 views

Rails ActiveRecord :counter_cache not updated if assocation not set up before create. Intentional?

I've implemented a belongs_to relation with :counter_cache => true and I notice that the counter cache does not get updated if the relation was not set up before the initial save. For instance, say a ...
1
vote
2answers
90 views

Avoiding individual database calls for count

My models look like this: class Movie < ActiveRecord::Base attr_accessible :title, :year, :rotten_id, :audience_score, :critics_score, :runtime, :synopsis, :link, :image has_many :jobs, ...
1
vote
2answers
242 views

How to test counter_cache with test::unit and mocha

I'm curious if i can mock out somehow the testing of a counter cache. Now I'm creating all the records to test the counter_cache. Is there any good practices to test counter cache effectively? Edit: ...
1
vote
3answers
2k views

How to implement a Counter Cache in Rails?

I have a posts controller and a comments controller. Post has many comments, and comments belong to Post. The associate is set up with the counter_cache option turned on as such: #Inside post.rb ...
1
vote
2answers
228 views

Accessing ruby counter cache

I'm playing around with a fork of acts_as_taggable_on_steroids as a learning exercise. The version I'm looking at does some stuff I don't understand to calculate Tag counts. So I thought I'd do a ...
1
vote
1answer
304 views

counter_cache is stale in after_create hook

I rely on a counter cache value in an after_create hook of my model. However, my hook is called before the counter cache gets updated, thus breaking a computation. Is there any way to force a counter ...
0
votes
1answer
22 views

Rails :counter_cache is not triggering after_update callback

So, I have a Folder and a FolderItem models. UPDATE # == Schema Information # # Table name: folders # # id :integer not null, primary key # name :string(255) ...
0
votes
1answer
39 views

counter_cache not incrementing… what am I doing wrong?

This seems super simple and so is making my life miserable. Rails 3.1.3. Edit: Based on advise below added t.integer "versions_count", :default => 0 to the migration,rolled back, recreated the ...
0
votes
0answers
25 views

How to update counter cache when editing a model

I have Question model as class Question < ActiveRecord::Base belongs_to :category, :counter_cache => true end I am using STI with Question model as base class. I have category model as ...
0
votes
1answer
52 views

Rails counter_cache'd association being updated with update_attributes; counter_cache column not updated

I'm running a Rails 2.3.14 app that is using a counter_cache column, something similar to: Workshop belongs_to :group, :counter_cache => true Group has_many :workshops If I assign my ...
0
votes
1answer
40 views

How can I cache a calculated attribute in Rails 3 similar to counter_cache?

I have an attribute that is a calculated value based data from various other models. I am looking for a slick way to cache that value similar to counter_cache but where the value is updated ...
0
votes
0answers
39 views

How to trigger multiple counter_cache in one model as has_many :through

I have 3 models(Allen, Bob, Chris) which are polymorphic with Join model. and a User model which connect with the join model. class Allen < ActiveRecord::Base has_many :joins, :as => ...
0
votes
1answer
24 views

when I do order on a counter_cache it returns nil objects first?

I have owns_count counter_cache on my items model. When i do Items.order("owns_cache DESC") , it returns me objects that are nil before other results. If I do "owns_cache ASC" , it is correct. ...
0
votes
2answers
74 views

In cakephp - can I counterCache related models? eg: User -> Profile

I have a field member_count on my countries table. Profile belongsTo Country counterCache => 'member_count', counterScope => array( 'Profile.country => 'US' ) So, when a user runs a save ...
0
votes
0answers
188 views

using :counter_cache with some conditions

I have the following model: class EntityTag < ActiveRecord::Base attr_protected :user_id, :post_id, :entity_id belongs_to :user belongs_to :post belongs_to :entity validates :user_id, ...
0
votes
1answer
164 views

cakephp Counter cache in nested model

i have nested model structure id parent_id counter name how to use automated counter cache
0
votes
1answer
313 views

What is covered by save(:validate => false)?

I just implemented a number of custom counter_caches using code like this: def after_save self.update_counter_cache end def after_destroy self.update_counter_cache end def ...
0
votes
1answer
115 views

Should I add an index on a counter-cache column in Ruby on Rails 3.0

Environment: Rails 3.0.4, MySQL, Ruby 1.8.7 I have the following table: create_table "countries", :force => true do |t| t.string "iso", :limit => 2, :null ...
0
votes
1answer
891 views

Readonly error when running a Rails 3 migration with update_attribute

I'm trying to add a counter_cache and this Rails 3 migration is giving me an error I just can't seem to resolve. The migration is class AddItemsCountToStore < ActiveRecord::Migration def ...
0
votes
1answer
234 views

How to implement Linq-to-Sql counter cache with concurrency and transactions support?

I have a scenario where I want to have a question object and users can concurrently add answer objects to the question object. The question object needs to maintain the answer count. How can I do an ...
0
votes
1answer
421 views

Multiple counter cache columns with aasm

I am looking for a way to cache the number of each state. I have done counter caching before, but is there a way to create multiple counter_cache columns for each state and keep them updated or ...