diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/http/urls.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt index 9ac0f93ff0..823567f5f4 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -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 ====================================== |
