1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[4.1.x] Fixed #25996 -- Revised performance section in URLs topic docs.

Backport of d3579ca112 from main
This commit is contained in:
Ralph Reid
2016-07-03 20:47:51 +02:00
committed by Mariusz Felisiak
parent d959d66fa9
commit 950a84ce42

View File

@@ -317,8 +317,9 @@ default argument for ``num``, ``1``. If the second pattern matches,
Performance
===========
Each regular expression in a ``urlpatterns`` is compiled the first time it's
accessed. This makes the system blazingly fast.
Django processes regular expressions in the ``urlpatterns`` list which is
compiled the first time it's accessed. Subsequent requests use the cached
configuration via the URL resolver.
Syntax of the ``urlpatterns`` variable
======================================