mirror of
https://github.com/django/django.git
synced 2025-03-12 18:30:48 +00:00
Fixed #36227 -- Fixed outdated PostgreSQL documentation links.
This commit is contained in:
parent
5a8b088a76
commit
3ecaa85a24
@ -58,7 +58,7 @@ available from the ``django.contrib.postgres.indexes`` module.
|
|||||||
default.
|
default.
|
||||||
|
|
||||||
.. _fillfactor: https://www.postgresql.org/docs/current/sql-createindex.html#SQL-CREATEINDEX-STORAGE-PARAMETERS
|
.. _fillfactor: https://www.postgresql.org/docs/current/sql-createindex.html#SQL-CREATEINDEX-STORAGE-PARAMETERS
|
||||||
.. _deduplicate_items: https://www.postgresql.org/docs/current/btree-implementation.html#BTREE-DEDUPLICATION
|
.. _deduplicate_items: https://www.postgresql.org/docs/current/btree.html#BTREE-DEDUPLICATION
|
||||||
|
|
||||||
``GinIndex``
|
``GinIndex``
|
||||||
============
|
============
|
||||||
@ -68,7 +68,7 @@ available from the ``django.contrib.postgres.indexes`` module.
|
|||||||
Creates a `gin index <https://www.postgresql.org/docs/current/gin.html>`_.
|
Creates a `gin index <https://www.postgresql.org/docs/current/gin.html>`_.
|
||||||
|
|
||||||
To use this index on data types not in the `built-in operator classes
|
To use this index on data types not in the `built-in operator classes
|
||||||
<https://www.postgresql.org/docs/current/gin-builtin-opclasses.html>`_,
|
<https://www.postgresql.org/docs/current/gin.html#GIN-BUILTIN-OPCLASSES>`_,
|
||||||
you need to activate the `btree_gin extension
|
you need to activate the `btree_gin extension
|
||||||
<https://www.postgresql.org/docs/current/btree-gin.html>`_ on
|
<https://www.postgresql.org/docs/current/btree-gin.html>`_ on
|
||||||
PostgreSQL. You can install it using the
|
PostgreSQL. You can install it using the
|
||||||
@ -82,7 +82,7 @@ available from the ``django.contrib.postgres.indexes`` module.
|
|||||||
parameter to tune the maximum size of the GIN pending list which is used
|
parameter to tune the maximum size of the GIN pending list which is used
|
||||||
when ``fastupdate`` is enabled.
|
when ``fastupdate`` is enabled.
|
||||||
|
|
||||||
.. _GIN Fast Update Technique: https://www.postgresql.org/docs/current/gin-implementation.html#GIN-FAST-UPDATE
|
.. _GIN Fast Update Technique: https://www.postgresql.org/docs/current/gin.html#GIN-FAST-UPDATE
|
||||||
.. _gin_pending_list_limit: https://www.postgresql.org/docs/current/runtime-config-client.html#GUC-GIN-PENDING-LIST-LIMIT
|
.. _gin_pending_list_limit: https://www.postgresql.org/docs/current/runtime-config-client.html#GUC-GIN-PENDING-LIST-LIMIT
|
||||||
|
|
||||||
``GistIndex``
|
``GistIndex``
|
||||||
@ -99,7 +99,7 @@ available from the ``django.contrib.postgres.indexes`` module.
|
|||||||
fields <range-fields>`.
|
fields <range-fields>`.
|
||||||
|
|
||||||
To use this index on data types not in the built-in `gist operator classes
|
To use this index on data types not in the built-in `gist operator classes
|
||||||
<https://www.postgresql.org/docs/current/gist-builtin-opclasses.html>`_,
|
<https://www.postgresql.org/docs/current/gist.html#GIST-BUILTIN-OPCLASSES>`_,
|
||||||
you need to activate the `btree_gist extension
|
you need to activate the `btree_gist extension
|
||||||
<https://www.postgresql.org/docs/current/btree-gist.html>`_ on PostgreSQL.
|
<https://www.postgresql.org/docs/current/btree-gist.html>`_ on PostgreSQL.
|
||||||
You can install it using the
|
You can install it using the
|
||||||
@ -112,7 +112,7 @@ available from the ``django.contrib.postgres.indexes`` module.
|
|||||||
Provide an integer value from 10 to 100 to the fillfactor_ parameter to
|
Provide an integer value from 10 to 100 to the fillfactor_ parameter to
|
||||||
tune how packed the index pages will be. PostgreSQL's default is 90.
|
tune how packed the index pages will be. PostgreSQL's default is 90.
|
||||||
|
|
||||||
.. _buffering build: https://www.postgresql.org/docs/current/gist-implementation.html#GIST-BUFFERING-BUILD
|
.. _buffering build: https://www.postgresql.org/docs/current/gist.html#GIST-BUFFERING-BUILD
|
||||||
.. _fillfactor: https://www.postgresql.org/docs/current/sql-createindex.html#SQL-CREATEINDEX-STORAGE-PARAMETERS
|
.. _fillfactor: https://www.postgresql.org/docs/current/sql-createindex.html#SQL-CREATEINDEX-STORAGE-PARAMETERS
|
||||||
|
|
||||||
``HashIndex``
|
``HashIndex``
|
||||||
|
Loading…
x
Reference in New Issue
Block a user