diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-11-11 21:23:45 +0100 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-11-11 21:25:30 +0100 |
| commit | 3db2aeec988f7bc9ad8a0844809a5bd4d7211669 (patch) | |
| tree | a76cc3b13545c772516cfab16be3bfe0afa63ef9 | |
| parent | 825a793555aafcbd670e50759f9a5046f11703df (diff) | |
[1.5.x] Tweaked cache key creation to avoid strict typing.
This is a provisional change. See #19221 for details.
Backport of 6c69de8 from master.
| -rw-r--r-- | django/core/cache/backends/base.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/django/core/cache/backends/base.py b/django/core/cache/backends/base.py index 06e8952bfb..09aed19276 100644 --- a/django/core/cache/backends/base.py +++ b/django/core/cache/backends/base.py @@ -12,6 +12,7 @@ class InvalidCacheBackendError(ImproperlyConfigured): class CacheKeyWarning(DjangoRuntimeWarning): pass + # Memcached does not accept keys longer than this. MEMCACHE_MAX_KEY_LENGTH = 250 @@ -23,7 +24,7 @@ def default_key_func(key, key_prefix, version): the `key_prefix'. KEY_FUNCTION can be used to specify an alternate function with custom key making behavior. """ - return ':'.join([key_prefix, str(version), key]) + return '%s:%s:%s' % (key_prefix, version, key) def get_key_func(key_func): """ |
