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.2.tar.gz (4.0 kB view details)

Uploaded Source

Built Distribution

django_mysql_fuzzycount-0.2-py2.py3-none-any.whl (6.1 kB view details)

Uploaded Python 2 Python 3

File details

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

File metadata

File hashes

Hashes for django-mysql-fuzzycount-0.2.tar.gz
Algorithm Hash digest
SHA256 b6a12a4b8e55cd089254dc5f78d2608a124679efa25428491805c3573a8c8288
MD5 64b0989861c8ea9f0aa0eb4bf9d4969b
BLAKE2b-256 c376aefb85a3bc821c56f61fbda8ffc6417ff7b4111a9ab106f3fd3972d58397

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for django_mysql_fuzzycount-0.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b237772bdb5588745a534471930b655facea8a3869072ae24d7d5874722cf46f
MD5 fba594148adad12457afe81f0875bf1f
BLAKE2b-256 9763e19e49c5eef6b56164777b60beeb48512d635a69ef73acc430428ab43d21

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