| DIR:/proc/self/root/usr/local/lib/python3.6/site-packages/django/core/cache/ |
| Current File : //proc/self/root/usr/local/lib/python3.6/site-packages/django/core/cache/utils.py |
import hashlib
TEMPLATE_FRAGMENT_KEY_TEMPLATE = 'template.cache.%s.%s'
def make_template_fragment_key(fragment_name, vary_on=None):
hasher = hashlib.md5()
if vary_on is not None:
for arg in vary_on:
hasher.update(str(arg).encode())
hasher.update(b':')
return TEMPLATE_FRAGMENT_KEY_TEMPLATE % (fragment_name, hasher.hexdigest())
|