Slide 25
Slide 25 text
Django 1.10
>>> Entry.objects.filter(body_text__search='recipe')
[, ]
>>> Entry.objects.annotate(
... search=SearchVector('blog__tagline',
'body_text'),
... ).filter(search='cheese')
[
,
,
,
]
https://github.com/django/django/commit/2d877da