SAVE AN OBJECT SKIPPING CALLBACKS IN RAILS 3 APPLICATION

In a Ruby on Rails application, we need to skip validation as well as callbacks while saving the object.
In Rails 3.x, commonly used method to skip callbacks is ActiveSupport’s skip_callback method, but this method could cause problems as its not thread-safe. This post talks about alternative way to achieve the purpose.

Technology
Read more