@@ -62,7 +62,7 @@ available from the ``django.contrib.postgres.indexes`` module.
62
62
The ``deduplicate_items`` parameter was added.
63
63
64
64
.. _fillfactor: https://www.postgresql.org/docs/current/sql-createindex.html#SQL-CREATEINDEX-STORAGE-PARAMETERS
65
- .. _deduplicate_items: https://www.postgresql.org/docs/current/btree-implementation .html#BTREE-DEDUPLICATION
65
+ .. _deduplicate_items: https://www.postgresql.org/docs/current/btree.html#BTREE-DEDUPLICATION
66
66
67
67
``GinIndex``
68
68
============
@@ -72,7 +72,7 @@ available from the ``django.contrib.postgres.indexes`` module.
72
72
Creates a `gin index <https://www.postgresql.org/docs/current/gin.html>`_.
73
73
74
74
To use this index on data types not in the `built-in operator classes
75
- <https://www.postgresql.org/docs/current/gin-builtin-opclasses .html>`_,
75
+ <https://www.postgresql.org/docs/current/gin.html#GIN-BUILTIN-OPCLASSES >`_,
76
76
you need to activate the `btree_gin extension
77
77
<https://www.postgresql.org/docs/current/btree-gin.html>`_ on
78
78
PostgreSQL. You can install it using the
@@ -86,7 +86,7 @@ available from the ``django.contrib.postgres.indexes`` module.
86
86
parameter to tune the maximum size of the GIN pending list which is used
87
87
when ``fastupdate`` is enabled.
88
88
89
- .. _GIN Fast Update Technique: https://www.postgresql.org/docs/current/gin-implementation .html#GIN-FAST-UPDATE
89
+ .. _GIN Fast Update Technique: https://www.postgresql.org/docs/current/gin.html#GIN-FAST-UPDATE
90
90
.. _gin_pending_list_limit: https://www.postgresql.org/docs/current/runtime-config-client.html#GUC-GIN-PENDING-LIST-LIMIT
91
91
92
92
``GistIndex``
@@ -103,7 +103,7 @@ available from the ``django.contrib.postgres.indexes`` module.
103
103
fields <range-fields>`.
104
104
105
105
To use this index on data types not in the built-in `gist operator classes
106
- <https://www.postgresql.org/docs/current/gist-builtin-opclasses .html>`_,
106
+ <https://www.postgresql.org/docs/current/gist.html#GIST-BUILTIN-OPCLASSES >`_,
107
107
you need to activate the `btree_gist extension
108
108
<https://www.postgresql.org/docs/current/btree-gist.html>`_ on PostgreSQL.
109
109
You can install it using the
@@ -116,7 +116,7 @@ available from the ``django.contrib.postgres.indexes`` module.
116
116
Provide an integer value from 10 to 100 to the fillfactor_ parameter to
117
117
tune how packed the index pages will be. PostgreSQL's default is 90.
118
118
119
- .. _buffering build: https://www.postgresql.org/docs/current/gist-implementation .html#GIST-BUFFERING-BUILD
119
+ .. _buffering build: https://www.postgresql.org/docs/current/gist.html#GIST-BUFFERING-BUILD
120
120
.. _fillfactor: https://www.postgresql.org/docs/current/sql-createindex.html#SQL-CREATEINDEX-STORAGE-PARAMETERS
121
121
122
122
``HashIndex``
0 commit comments