Difference between after_create, after_save and after_commit in rails callbacks Difference between after_create, after_save and after_commit in rails callbacks ruby-on-rails ruby-on-rails

Difference between after_create, after_save and after_commit in rails callbacks


You almost got it right. However there is one major difference between after_commit and after_create or after_save i.e.

In the case of after_create, this will always be before the call to save (or create) returns.

Rails wraps every save inside a transaction and the before/after create callbacks run inside that transaction (a consequence of this is that if an exception is raised in an after_create the save will be rolled back). With after_commit, your code doesn't run until after the outermost transaction was committed. This could be the transaction rails created or one created by you (for example if you wanted to make several changes inside a single transaction). Originally posted here

That also means, that if after_commit raises an exception, then the transaction won't be rolled back.


With Order of callbacks

after_create -

Is called after Model.save on new objects that haven‘t been saved yet (no record exists)

after_save -

Is called after Model.save (regardless of whether it‘s a create or update save)

after_commit -

Is called after the database transaction is completed.


Also, after_commit will execute even if the record was only touched. This may NOT be what you want. after_save will not run after touch.