On 4/3/07, Nowell Strite <[EMAIL PROTECTED]> wrote:
> Django currently supoorts COOKIE prefixes, as well as a
> CACHE_MIDDLEWARE_KEY_PREFIX, but I would find it immensely useful to
> have a prefix for all cache key entries (i.e. site's sharing a common
> caching mechanism, with overlapping keys that hold different data)

I'm not a big fan of having my cache keys transparently changed. I
think as a point of philosophy Django shouldn't mess with things like
that.

Besides, doing it yourself couldn't be easier::

    cache.set(settings.CACHE_KEY_PREFIX + key, value, timeout)

Jacob

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to