In Django-3.2 class Index get a positional argument expressions which allows to create functional indexes on expressions
Is it possible to create index on Integer field with expression greater? For example
My model:
class Product(models.Model):
description = models.CharField(max_length=50)
delivery_date = models.DateTimeField(null=True)
quantity = models.IntegerField(validators=[MinValueValidator(0)])
Usually I have a filter (quantity>0). How to create expression index on that?
You can use an
ExpressionWrapper
to create a functional index:Which will be translated in SQL to:
Typically however a
db_index=True
[Django-doc], will suffice to speed up filter since these are typically implemented by some tree-like structure, and thus will determine the objects to retrieve in O(log n).We thus can set this to:
This will work reasonable fast.