Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between after_create, after_save and after_commit in rails callbacks

The difference between after_create, after_save and after_commit in Rails is that:

  • after_save is invoked when an object is created and updated
  • after_commit is called on create, update and destroy.
  • after_create is only called when creating an object

Is this the only difference among those, or are there any other major differences?

like image 642
Haseeb Ahmad Avatar asked Nov 24 '15 09:11

Haseeb Ahmad


2 Answers

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.

From M-Dahab's comment: after_commit would run after create, update and destroy. But, you can use on: option to specify which you are interested in. after_commit :some_method, on: :create or even after_commit :some_method, on: [:create, :destroy] or use a block like after_commit(on: :update) do run_method() end.

like image 157
Dusht Avatar answered Oct 17 '22 19:10

Dusht


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.

like image 30
Arvind singh Avatar answered Oct 17 '22 17:10

Arvind singh