You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
First we grab the account objects, then start a transaction with `Account.transaction`. It actually makes *no difference* which `ActiveRecord` class or instance we call this method on. We could have used any of these:
First we fetch the account objects then start a transaction with `Account.transaction`. It actually makes *no difference* which `ActiveRecord` class or instance we call this method on. We could have used any of these:
*`@account_a.transaction do`
*`@account_b.transaction do`
@@ -31,9 +31,13 @@ First we grab the account objects, then start a transaction with `Account.transa
The choice would make absolutely no difference in the execution. I prefer to use the class method as I did in the example, `Account.transaction`.
Rails will start a transaction in the database engine, then start executing the block. If no exceptions occur then Rails closes the transaction and the database commits the data. If there is an exception, Rails will tell the database to cancel the transaction and no data is changed. If the entire Rails process or server dies then the transaction will timeout and be cancelled.
Rails will open a transaction in the database engine, then start executing the block. There are three possibilities:
The critical step to notice is the use of `.save!` instead of `.save`. The former will raise an exception when the save fails, while the latter will just return `false`. If we just used `.save` our transaction would never fail and thus has no purpose. If you wanted to use `.save`, here's one possible refactoring:
1. If no exceptions occur during the block then Rails closes the transaction and the database commits the data
2. If there is an exception, Rails will tell the database to cancel the transaction and no data is changed
3. If the entire Rails process or server dies then the transaction will timeout and be cancelled by the database
The critical step to notice is the use of `.save!` instead of `.save`. The former will raise an exception when the operation fails, while the latter will just return `false`. If we just used `.save` our transaction would *never fail*. If you wanted to use `.save`, here's one possible refactoring:
```
Account.transaction do
@@ -43,7 +47,7 @@ Account.transaction do
end
```
Also, it's ideal to do as little as possible in the transaction because it is taxing on the database. I'd pull the two math operation out to save a few milliseconds. Here's a final version:
It's ideal to run as few instructions as possible inside the transaction because keeping the connection open is taxing on the database. I'd pull the two math operation out to save a few microseconds. Here's a final version:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
As your business logic gets complex you may need to implement transactions. The classic example is a bank funds transfer from account A to account B. If the withdrawal from account A fails then the deposit to account B should either never take place or be rolled back.
## Basics
All the complexity is handled by `ActiveRecord::Transactions`. Any model class or instance has a method named `.transaction`. When called and passed a block, that block will be executed inside a database transaction. If there's an exception raised, the transaction will automatically be rolled back.
### Example
Let's work with the account transfer scenario. It could be implemented like this:
```ruby
@account_a=Account.find_by_name("A")
@account_b=Account.find_by_name("B")
Account.transaction do
@account_a.balance -= transfer_amount
@account_a.save!
@account_b.balance += transfer_amount
@account_b.save!
end
```
First we grab the account objects, then start a transaction with `Account.transaction`. It actually makes *no difference* which `ActiveRecord` class or instance we call this method on. We could have used any of these:
*`@account_a.transaction do`
*`@account_b.transaction do`
*`ActiveRecord::Base.transaction do`
*`self.transaction do`
*`self.class.transaction do`
The choice would make absolutely no difference in the execution. I prefer to use the class method as I did in the example, `Account.transaction`.
Rails will start a transaction in the database engine, then start executing the block. If no exceptions occur then Rails closes the transaction and the database commits the data. If there is an exception, Rails will tell the database to cancel the transaction and no data is changed. If the entire Rails process or server dies then the transaction will timeout and be cancelled.
The critical step to notice is the use of `.save!` instead of `.save`. The former will raise an exception when the save fails, while the latter will just return `false`. If we just used `.save` our transaction would never fail and thus has no purpose. If you wanted to use `.save`, here's one possible refactoring:
Also, it's ideal to do as little as possible in the transaction because it is taxing on the database. I'd pull the two math operation out to save a few milliseconds. Here's a final version: