a simple question about cache if i have this in controller:
@cache(request.env.path_info, time_expire=CACHE_TIME_EXPIRE_PAGES,
cache_model=cache.ram)
def index():
try:
page = int(request.args[0])
except:
page = 1
d = dict(page=page)
return response.render(d)
but i have auth.navbar setting in view, this will be render
differently in each users?. I have this doubt.

