Skip to content

DOCSP-41472: txn learning byte link #3048

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions docs/transactions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,21 @@ Multi-document transactions are **ACID compliant** because MongoDB
guarantees that the data in your transaction operations remains consistent,
even if the driver encounters unexpected errors.

Learn how to perform transactions in the following sections of this guide:
To learn more about transactions in MongoDB, see :manual:`Transactions </core/transactions/>`
in the {+server-docs-name+}.

This guide contains the following sections:

- :ref:`laravel-transaction-requirements`
- :ref:`laravel-transaction-callback`
- :ref:`laravel-transaction-commit`
- :ref:`laravel-transaction-rollback`

.. tip::
.. tip:: Transactions Learning Byte

To learn more about transactions in MongoDB, see :manual:`Transactions </core/transactions/>`
in the {+server-docs-name+}.
Practice using {+odm-short+} to perform transactions
in the `Laravel Transactions Learning Byte
<https://learn.mongodb.com/courses/laravel-transactions>`__.

.. _laravel-transaction-requirements:

Expand Down Expand Up @@ -156,4 +160,3 @@ transaction is rolled back, and none of the models are updated:
:emphasize-lines: 1,18,20
:start-after: begin rollback transaction
:end-before: end rollback transaction

Loading