Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given three models, e.g, house, wall and door (a house has may walls and a wall has many doors): House should have a counter cache column for all doors of all associated walls, since that's a fairly expensive query to make.

In order to update this column, I'm using after_create and after_destroy callbacks within the door model, which trigger the following methods successfully:

def increase_house_doors_count
  House.increment_counter(:doors_count, house.id)
end

def decrease_house_doors_count
  House.decrement_counter(:doors_count, house.id)
end

"house" is a method:

def house
  wall.house
end

Initially I had used a slightly different but (IMO) more simple version:

def increase_house_doors_count
  house.increment(:doors_count)
end

def decrease_house_doors_count
  house.decrement(:doors_count)
end

But this latter version didn't update the counter when used within the model. Running the code directly from the console was successful, though.

What am i missing here?

Cheers!

share|improve this question

1 Answer

up vote 2 down vote accepted

Maybe try it like this:

house.increment!(:doors_count)

Perhaps it needs to be done in place.

share|improve this answer
That did indeed the trick. Thanks a lot! – polarblau Jan 6 '11 at 18:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.