This project has been archived by its maintainers, and is no longer receiving any updates.
This is a simple Postgres Connection Pooling backend for Django 1.4+, powered by the lovely and beautiful SQLAlchemy.
Usage
Using Django-PostgresPool is simple, just set django_postgrespool as your connection engine:
DATABASES = {
'default': {
'ENGINE': 'django_postgrespool'
If you’re using the dj-database-url module:
import dj_database_url DATABASES['default'] = dj_database_url.config() DATABASES['default']['ENGINE'] = 'django_postgrespool'
If you’re using south:
SOUTH_DATABASE_ADAPTERS = {
'default': 'south.db.postgresql_psycopg2'
}
Everything should work as expected.
Installation
Installing Django-PostgresPool is simple, with pip:
$ pip install django-postgrespool
Configuration
Optionally, you can provide additional options to pass to SQLAlchemy’s pool creation:
DATABASE_POOL_ARGS = {
'max_overflow': 10,
'pool_size': 5,
'recycle': 300
}
Here’s a basic explanation of two of these options:
pool_size – The minimum number of connections to maintain in the pool.
max_overflow – The maximum overflow size of the pool. This is not the maximum size of the pool.
The total number of “sleeping” connections the pool will allow is pool_size. The total simultaneous connections the pool will allow is pool_size + max_overflow.
As an example, databases in the Heroku Postgres starter tier have a maximum connection limit of 20. In that case your pool_size and max_overflow, when combined, should not exceed 20.
Check out the official SQLAlchemy Connection Pooling docs to learn more about the optoins that can be defined in DATABASE_POOL_ARGS.
Django 1.3 Support
django-postgrespool currently supports Django 1.4 and greater. See this ticket for 1.3 support.
Release files for django-postgrespool-lab 0.3.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django-postgrespool-lab-0.3.0.tar.gz | 4.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| django_postgrespool_lab-0.3.0-py2-none-any.whl | Python 2 | none | any | Details |
Total release size: 10.6 kB
Release files / django-postgrespool-lab-0.3.0.tar.gz
| Download URL | django-postgrespool-lab-0.3.0.tar.gz |
|---|---|
| Size | 4.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
546b08c48570f7fc79da8e0f53f7b83a47b92e31ceca16bc5e20b4a83a11fa53
|
|
BLAKE2b-256 checksum How to use checksums |
fcffa5214e50d2cf927b0bdc18b29f1c1e755759d627d68e94f18322a72d9b62
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / django_postgrespool_lab-0.3.0-py2-none-any.whl
| Download URL | django_postgrespool_lab-0.3.0-py2-none-any.whl |
|---|---|
| Size | 6.1 kB |
| Tags | Python 2 |
|
SHA-256 checksum How to use checksums |
a1f5ec4948794c8b672caa93296421e492476414b19cee2b804e4645dd84f1e9
|
|
BLAKE2b-256 checksum How to use checksums |
d3cf936e4caafd27291c705fd636e431fa5eae438b11ce73cc259f0a208852f5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |