Skip to main content

Approximate query counts for MySQL and Django.

Project description

When using MySQL, counting all rows is very expensive on large InnoDB tables. This is a replacement for QuerySet that returns an approximation if COUNT(*) is called with no additional constraints. In all other cases it should behave exactly as QuerySet.

This only works with MySQL and behaves normally for all other engines.

Installation

Install the package django-mysql-fuzzycount from PyPI using pip:

$ pip install -U django-mysql-fuzzycount

Usage

There are a couple ways to use the FuzzyCountQuerySet.

You can import and use the provided FuzzyCountManager on your Django models:

from django.db import models

from mysql_fuzzycount.managers import FuzzyCountManager

class Choice(model.Model):
    objects = FuzzyCountManager()

    # ...

Then, doing a count on the Choice model, without any constraints, will approximate the total count:

>>> Choice.objects.count()  # approximation
100
>>> Choice.objects.filter(votes__gt=10).count()  # not an approximation
28

Another common issue is counts in the admin for a model. There is a base ModelAdmin class that you can subclass in your admin.py files to prevent expensive COUNT(*) queries upon loading the admin page. In an admin.py for one of your models:

from django.contrib import admin

from mysql_fuzzycount.admin import FuzzyCountModelAdmin

from myapp.models import Choice


class ChoiceAdmin(FuzzyCountModelAdmin):
    pass

admin.site.register(Choice, ChoiceAdmin)

Now, when you load the admin page for the Choice model, the count for pagination will be approximate.

Testing

It has been tested in production, but there are no unit or integration tests.

License

Copyright © 2013, Educreations, Inc under the MIT LICENSE.

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-mysql-fuzzycount-0.4.tar.gz (4.1 kB view details)

Uploaded Source

Built Distribution

django_mysql_fuzzycount-0.4-py2.py3-none-any.whl (4.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-mysql-fuzzycount-0.4.tar.gz.

File metadata

File hashes

Hashes for django-mysql-fuzzycount-0.4.tar.gz
Algorithm Hash digest
SHA256 95bf50b3698ab15a1d3be0d22e87d932f70b6eebd3ebfeb66bafc03b9e064939
MD5 5b9118630f4c64037ce381aa335c0869
BLAKE2b-256 fad412e9c5a5081ec484210c9d42382e69b95e75179d870feaae0c9c67fa69fd

See more details on using hashes here.

Provenance

File details

Details for the file django_mysql_fuzzycount-0.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_mysql_fuzzycount-0.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 ef4538aead1f36b350331294e56d1f5e2e826188c5ba11b89f2df40cb226a1e0
MD5 c4341e01f630ccfe6242e2be61383251
BLAKE2b-256 7ebd703ceabbe4de242ba73fe7e4f8e2c622b33e9aed618f7af4ab775487234b

See more details on using hashes here.

Provenance

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