Django query optimization supports for multi db relations.
Project description
# django-multi-db-relation
> Queryset optimization supports for multi database spanning relations between Django models.
## Requirements
- Python (>= 3.5)
- Django (>= 1.10)
## Installation
```sh
pip install django-multi-db-relation
```
## Usage
For models
```python
class ModelA(models.Model):
name = models.CharField(max_length=10)
class ModelB(models.Model):
a = models.ForeignKey(ModelA, on_delete=models.DO_NOTHING)
class ModelC(models.Model):
b = models.ForeignKey(ModelB, on_delete=models.DO_NOTHING, db_constraint=False)
```
suppose that `ModelA` and `ModelB` is routed to `db1` and `ModelC` to `db2`.
We **cannot** run a queryset with `select_related()`.
```python
>>> ModelC.objects.select_related('b') # Table not found
```
In this case, modify `ModelC` like:
```python
from multi_db_relation.mixins import ExternalDbQuerySetMixin
class ModelCQuerySet(ExternalDbQuerySetMixin, models.QuerySet):
pass
class ModelC(models.Model):
b = models.ForeignKey(ModelB, on_delete=models.DO_NOTHING, db_constraint=False)
objects = models.Manager.from_queryset(queryset_class=ModelCQuerySet)()
class Meta:
external_db_fields = ['b']
```
then:
```python
>>> ModelC.objects.select_related('b') # Number of queries is optimized from O(n) to O(1)
>>> ModelC.objects.select_related('b__a') # Also works well
```
## License
- See [LICENSE](LICENSE)
> Queryset optimization supports for multi database spanning relations between Django models.
## Requirements
- Python (>= 3.5)
- Django (>= 1.10)
## Installation
```sh
pip install django-multi-db-relation
```
## Usage
For models
```python
class ModelA(models.Model):
name = models.CharField(max_length=10)
class ModelB(models.Model):
a = models.ForeignKey(ModelA, on_delete=models.DO_NOTHING)
class ModelC(models.Model):
b = models.ForeignKey(ModelB, on_delete=models.DO_NOTHING, db_constraint=False)
```
suppose that `ModelA` and `ModelB` is routed to `db1` and `ModelC` to `db2`.
We **cannot** run a queryset with `select_related()`.
```python
>>> ModelC.objects.select_related('b') # Table not found
```
In this case, modify `ModelC` like:
```python
from multi_db_relation.mixins import ExternalDbQuerySetMixin
class ModelCQuerySet(ExternalDbQuerySetMixin, models.QuerySet):
pass
class ModelC(models.Model):
b = models.ForeignKey(ModelB, on_delete=models.DO_NOTHING, db_constraint=False)
objects = models.Manager.from_queryset(queryset_class=ModelCQuerySet)()
class Meta:
external_db_fields = ['b']
```
then:
```python
>>> ModelC.objects.select_related('b') # Number of queries is optimized from O(n) to O(1)
>>> ModelC.objects.select_related('b__a') # Also works well
```
## License
- See [LICENSE](LICENSE)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file django_multi_db_relation-0.1-py3-none-any.whl
.
File metadata
- Download URL: django_multi_db_relation-0.1-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 289f9535f6e0fd9e52a8f0f4ba24f954696031ca7f9e07cedafd5be50ae63d7e |
|
MD5 | 3b655b9dbe1a557dd86ce8a248df734a |
|
BLAKE2b-256 | 313c77c0dcee5d9bcf7bd66a894eff421dd1b5862f8a7ecac35f42b633383636 |