Improved example of index on SearchVector in full text search docs.

This commit is contained in:
Ilia Peterov 2022-08-29 21:28:00 +04:00 committed by GitHub
parent a9e7beb959
commit 0010721e89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -260,7 +260,10 @@ particular model, you can create a functional
:class:`GiST <django.contrib.postgres.indexes.GistIndex>` index which matches
the search vector you wish to use. For example::
GinIndex(SearchVector('body_text'), name='body_search_vector_idx')
GinIndex(
SearchVector('body_text', 'headline', config='english'),
name='search_vector_idx',
)
The PostgreSQL documentation has details on
`creating indexes for full text search