معرفی شرکت ها


django-pgtransaction-1.0.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A context manager/decorator which extends Django's atomic function with the ability to set isolation level and retries for a given transaction.
ویژگی مقدار
سیستم عامل -
نام فایل django-pgtransaction-1.0.0
نام django-pgtransaction
نسخه کتابخانه 1.0.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Opus 10 Engineering
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/Opus10/django-pgtransaction
آدرس اینترنتی https://pypi.org/project/django-pgtransaction/
مجوز BSD-3-Clause
django-pgtransaction ==================== django-pgtransaction offers a drop-in replacement for the default ``django.db.transaction`` module which, when used on top of a PostgreSQL database, extends the functionality of that module with Postgres-specific features. At present, django-pgtransaction offers an extension of the ``django.db.transaction.atomic`` context manager/decorator which allows one to dynamically set the `isolation level <https://www.postgresql.org/docs/current/transaction-iso.html>`__ when opening a transaction, as well as specifying a retry policy for when an operation in that transaction results in a Postgres locking exception. See the quickstart below or `the docs <https://django-pgtransaction.readthedocs.io/>`__ for examples. Quickstart ========== Set the isolation level of a transaction by using ``pgtransaction.atomic``: .. code-block:: python import pgtransaction with pgtransaction.atomic(isolation_level=pgtransaction.SERIALIZABLE): # Do queries... There are three isolation levels: ``pgtransaction.READ_COMMITTED``, ``pgtransaction.REPEATABLE_READ``, and ``pgtransaction.SERIALIZABLE``. By default it inherits the parent isolation level, which is Django's default of "READ COMMITTED". When using stricter isolation levels like ``pgtransaction.SERIALIZABLE``, Postgres will throw serialization errors upon concurrent updates to rows. Use the ``retry`` argument with the decorator to retry these failures: .. code-block:: python @pgtransaction.atomic(isolation_level=pgtransaction.SERIALIZABLE, retry=3) def do_queries(): # Do queries... Note that the ``retry`` argument will not work when used as a context manager. A ``RuntimeError`` will be thrown. By default, retries are only performed when ``psycopg2.errors.SerializationError`` or ``psycopg2.errors.DeadlockDetected`` errors are raised. Configure retried psycopg2 errors with ``settings.PGTRANSACTION_RETRY_EXCEPTIONS``. You can set a default retry amount with ``settings.PGTRANSACTION_RETRY``. ``pgtransaction.atomic`` can be nested, but keep the following in mind: 1. The isolation level cannot be changed once a query has been performed. 2. The retry argument only works on the outermost invocation as a decorator, otherwise ``RuntimeError`` is raised. Documentation ============= Check out the `Postgres docs <https://www.postgresql.org/docs/current/transaction-iso.html>`__ to learn about transaction isolation in Postgres. `View the django-pgtransaction docs here <https://django-pgtransaction.readthedocs.io/>`_. Installation ============ Install django-pgtransaction with:: pip3 install django-pgtransaction After this, add ``pgtransaction`` to the ``INSTALLED_APPS`` setting of your Django project. Contributing Guide ================== For information on setting up django-pgtransaction for development and contributing changes, view `CONTRIBUTING.rst <CONTRIBUTING.rst>`_. Primary Authors =============== - `Paul Gilmartin <https://github.com/PaulGilmartin>`__ - `Wes Kendall <https://github.com/wesleykendall>`__


نیازمندی

مقدار نام
>=2 django
>=4) importlib_metadata


زبان مورد نیاز

مقدار نام
>=3.7.0,<4 Python


نحوه نصب


نصب پکیج whl django-pgtransaction-1.0.0:

    pip install django-pgtransaction-1.0.0.whl


نصب پکیج tar.gz django-pgtransaction-1.0.0:

    pip install django-pgtransaction-1.0.0.tar.gz