Changes between Initial Version and Version 1 of Ticket #14093, comment 7
- Timestamp:
- Feb 13, 2011, 2:48:30 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14093, comment 7
initial v1 1 1 The VALID_KEY_CHARS setting was introduced to sanitize user input for security. 2 2 3 Your proposal to switch from MD5 to UUID4 isn't addressing the core of the problem. You'd be going from a 512bit random(ish) number to a 113 bit random number. This really isn't going to fix the problem, which is that your cache is timing out. We need to address that directly.3 Your proposal to switch from MD5 to UUID4 isn't addressing the core of the problem. You'd be going from a 128 bit random(ish) number to a 113 bit random number. This really isn't going to fix the problem, which is that your cache is timing out. We need to address that directly. 4 4 5 5 See also my post on django-dev: