معرفی شرکت ها


django-db-connection-pool-plus-1.0.7


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Persistent database connection backends for Django
ویژگی مقدار
سیستم عامل -
نام فایل django-db-connection-pool-plus-1.0.7
نام django-db-connection-pool-plus
نسخه کتابخانه 1.0.7
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Altair Bow
ایمیل نویسنده altair.bow@foxmail.com
آدرس صفحه اصلی https://github.com/HQ1363/django-db-connection-pool
آدرس اینترنتی https://pypi.org/project/django-db-connection-pool-plus/
مجوز MIT
# django-db-connection-pool MySQL & Oracle & PostgreSQL connection pool backends of Django, Be based on SQLAlchemy. * [中文版](https://github.com/altairbow/django-db-connection-pool/blob/master/README_CN.md) #### Quickstart 1. Install with `pip` with all engines: ```bash $ pip install django-db-connection-pool[all] ``` or select specific engines: ```bash $ pip install django-db-connection-pool[mysql,oracle,postgresql] ``` 2. Configuration * ##### MySQL change `django.db.backends.mysql` to `dj_db_conn_pool.backends.mysql`: ``` DATABASES = { 'default': { ... 'ENGINE': 'dj_db_conn_pool.backends.mysql' ... } } ``` * ##### Oracle change `django.db.backends.oracle` to `dj_db_conn_pool.backends.oracle`: ``` DATABASES = { 'default': { ... 'ENGINE': 'dj_db_conn_pool.backends.oracle' ... } } ``` * ##### PostgreSQL change `django.db.backends.postgresql` to `dj_db_conn_pool.backends.postgresql`: ``` DATABASES = { 'default': { ... 'ENGINE': 'dj_db_conn_pool.backends.postgresql' ... } } ``` * ##### pool options(optional) you can provide additional options to pass to SQLAlchemy's pool creation, key's name is `POOL_OPTIONS`: ``` DATABASES = { 'default': { ... 'POOL_OPTIONS' : { 'POOL_SIZE': 10, 'MAX_OVERFLOW': 10 } ... } } ``` Here's explanation of these options(from SQLAlchemy's Doc): * **pool_size**: The size of the pool to be maintained, defaults to 5. This is the largest number of connections that will be kept persistently in the pool. Note that the pool begins with no connections; once this number of connections is requested, that number of connections will remain. `pool_size` can be set to 0 to indicate no size limit; to disable pooling, use a :class:`~sqlalchemy.pool.NullPool` instead. * **max_overflow**: The maximum overflow size of the pool. When the number of checked-out connections reaches the size set in pool_size, additional connections will be returned up to this limit. When those additional connections are returned to the pool, they are disconnected and discarded. It follows then that the total number of simultaneous connections the pool will allow is pool_size + `max_overflow`, and the total number of "sleeping" connections the pool will allow is pool_size. `max_overflow` can be set to -1 to indicate no overflow limit; no limit will be placed on the total number of concurrent connections. Defaults to 10. or you can use dj_db_conn_pool.setup to change default arguments(for each pool's creation), before using database pool: ```python import dj_db_conn_pool dj_db_conn_pool.setup(pool_size=100, max_overflow=50) ```


نحوه نصب


نصب پکیج whl django-db-connection-pool-plus-1.0.7:

    pip install django-db-connection-pool-plus-1.0.7.whl


نصب پکیج tar.gz django-db-connection-pool-plus-1.0.7:

    pip install django-db-connection-pool-plus-1.0.7.tar.gz