Update docs/docs/docs/01-core/database/02-transactions.md

Co-authored-by: Ben Irvin <ben@innerdvations.com>
This commit is contained in:
Marc 2023-05-23 14:02:02 +02:00 committed by GitHub
parent 4ffaefcb18
commit 13c1d0db2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,7 +93,7 @@ Transactions should be used in cases where multiple operations should be execute
## When not to use transactions
Transactions should not be used for small or simple sets of operations since it can result in performance penalties.
Transactions should not be used for operations that are not dependent on each other since it can result in performance penalties.
## Potential problems of transactions