﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
10066	can per-site cache and per-view cache or some low level cache work together?	ubestim	nobody	"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?"	Uncategorized	closed	Documentation	1.0	Normal	invalid			Unreviewed	0	0	0	0	0	0
