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

Fixed #25778 -- Updated docs links to use https when available.

This commit is contained in:
Jon Dufresne
2015-11-29 08:29:46 -08:00
committed by Tim Graham
parent 51a3721372
commit 7aabd62380
66 changed files with 156 additions and 156 deletions

View File

@@ -1178,7 +1178,7 @@ query string but not the scheme or host. If a Django application was serving
multiple subdomains or domains, cache keys could collide. In Django 1.7, cache
keys vary by the absolute URL of the request including scheme, host, path, and
query string. For example, the URL portion of a cache key is now generated from
``http://www.example.com/path/to/?key=val`` rather than ``/path/to/?key=val``.
``https://www.example.com/path/to/?key=val`` rather than ``/path/to/?key=val``.
The cache keys generated by Django 1.7 will be different from the keys
generated by older versions of Django. After upgrading to Django 1.7, the first
request to any previously cached URL will be a cache miss.