#4831: Adding "add" support to memcached cache_backend -----------------------+---------------------------------------------------- Reporter: crazyal | Owner: jacob Status: new | Component: Cache system Version: SVN | Keywords: cache memcached Stage: Unreviewed | Has_patch: 0 -----------------------+---------------------------------------------------- The Django system has a "set" function for the cache backend which works with memcached which also has a "set" function. But memcached also has an "add" function which the Django cache backend doesn't seem to support. The "add" function becomes important with high traffic sites. If alot of requests are coming to the server and wanting to rebuild the cache, using "set" means each request will effectively try and set the cache which becomes a problem. The "add" function means it will only add the new cache if it hasn't already been added.
-- Ticket URL: <http://code.djangoproject.com/ticket/4831> Django Code <http://code.djangoproject.com/> The web framework for perfectionists with deadlines --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" 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-updates?hl=en -~----------~----~----~----~------~----~------~--~---
