#10066: can per-site cache and per-view cache or some low level cache work
together?
---------------------------+------------------------------------------------
 Reporter:  ubestim        |       Owner:  nobody    
   Status:  new            |   Milestone:            
Component:  Documentation  |     Version:  1.0       
 Keywords:                 |       Stage:  Unreviewed
Has_patch:  0              |  
---------------------------+------------------------------------------------
 can per-site cache and per-view cache or some low level cache work
 together?
 my purpose is to cache the whole site for anonymous and cache serveral
 view for registered user only.

 first, i set these in per-site cache in settings.py:
 CACHE_BACKEND = 'memcached://100.13.192.7:11211/'
 CACHE_MIDDLEWARE_SECONDS = 600
 CACHE_MIDDLEWARE_ANONYMOUS_ONLY = True

 this means only cache for anonymous.

 then i set some per-view cache as below:
 @cache_page(60 * 15)
 def slashdot_this(request):

 so view of slashdot_this will cache for register user and anonymous.

 am i right?

 If I have added the middleware needed for per-site cache,the cache
 middleware will cache again the data already cached
 by my view?
 Can you give more explanation in cache settings for using one of per-
 persite and per-view/low level and  using them together?

-- 
Ticket URL: <http://code.djangoproject.com/ticket/10066>
Django <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 django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to