Last updated

ActiveRecord: Skipping callbacks like after_save or after_update

Active Records provides callbacks, which is great is you want to perform extra business logic after (or before) saving, creating or destroying an instance of that model.

However, there are situations where you can easily fall into the trap of creating an infinite loop.

1class Beer < ActiveRecord::Base
2  def after_save
3    x = some_magic_method(self)
4    update_attribute(:my_attribute, x)
5  end
6end

The above will give you a nice infinite loop (which doesn’t scale). It’s possible to update your model, without calling the callbacks and without resorting to SQL.

1class Beer < ActiveRecord::Base
2  def after_save
3    x = some_magic_method(self)
4    Beer.update_all("my_attribute = #{x}", { :id => self.id })
5  end
6end

This is a bit unconventional, but it works nicely. You can use all the following ActiveRecord methods to update your model without calling callbacks:

  • decrement
  • decrement_counter
  • delete
  • delete_all
  • find_by_sql
  • increment
  • increment_counter
  • toggle
  • update_all
  • update_counters

An important warning: These methods don’t do all the nice SQL injection protection stuff you’re used to. In the example, the value of x will be inserted straight into the SQL. I recommend you only use these methods if you’re absolutely sure you’ve cleaned the values you’re inserting.

Check out the rails documentation on how to use these methods.

Tags: General