blob: 1ddd824f7735b299fa6f2e19d3c22002a4a4067a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<name>Julien Roy</name>
<email>julien@jroy.ca</email>
</maintainer>
<longdescription>
Django-MySQL extends Django's built-in MySQL and MariaDB support their specific features not available on other databases.
What kind of features?
Includes:
QuerySet extensions:
'Smart' iteration - chunked pagination across a large queryset
approx_count for quick estimates of count()
Query hints
Quick pt-visual-explain of the underlying query
Model fields:
MariaDB Dynamic Columns for storing dictionaries
Comma-separated fields for storing lists and sets
'Missing' fields: differently sized BinaryField/TextField classes, BooleanFields represented by BIT(1)
ORM expressions for over 20 MySQL-specific functions
A new cache backend that makes use of MySQL's upsert statement and does compression
Status variable inspection and utility methods
Named locks for easy locking of e.g. external resources
Table lock manager for hard to pull off data migrations
To see them all, check out the exposition at https://django-mysql.readthedocs.io/en/latest/exposition.html .
</longdescription>
<upstream>
<maintainer>
<name>Adam Johnson</name>
<email>me@adamj.eu</email>
</maintainer>
<bugs-to>https://github.com/adamchainz/django-mysql/issues</bugs-to>
<changelog>https://github.com/adamchainz/django-mysql/releases</changelog>
<doc>https://django-mysql.readthedocs.io/</doc>
<remote-id type="pypi">django-mysql</remote-id>
<remote-id type="github">adamchainz/django-mysql</remote-id>
</upstream>
</pkgmetadata>
|