Skip to main content

Django multiple databases, auto routers

Project description

# django-routers

Django multiple databases, auto routers


# Install

pip install django-routers


# Usage

Add in settings:

DATABASE_ROUTERS = ['routers.router.AutoRouter']


## Settings example:

* Written server by **default**
* Reading server by **default** and **slave**

Example:

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'routers',
'USER': 'root',
'PASSWORD': 'root',
'HOST': '127.0.0.1',
},
'slave': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'routers_more',
'USER': 'root',
'PASSWORD': 'root',
'HOST': '10.0.0.2',
}
}

DATABASE_ROUTERS = ['routers.router.AutoRouter']


## Advanced options

Settings Variables:

* ROUTERS_READ
* * Declares which server is reading
* ROUTERS_WRITE
* * Declares which server is written
* ROUTERS_ALLOW_RELATION
* * Declares whether we consulted on more than one database, default is **True**

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-routers-0.2.tar.gz (2.2 kB view details)

Uploaded Source

File details

Details for the file django-routers-0.2.tar.gz.

File metadata

File hashes

Hashes for django-routers-0.2.tar.gz
Algorithm Hash digest
SHA256 eeb176cbb46a83454d96a5239e1bb1334914f7f5f595f4692f2684a0ee128fe6
MD5 7dd0d9fa274f827773b7dcd217fd6d83
BLAKE2b-256 32fe4c23c1f4ed881460512e81963d3433b7b525793136193ca37d3af4de035a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page