func (this CacheMiddleWare) Request(ctxt *web.Context) { switch this.profile { case CACHE_PROFILE_NOCACHE: ctxt.PrivateNoCache() case CACHE_PROFILE_NOSTORE: ctxt.PrivateNoStore() case CACHE_PROFILE_PUBLIC: ctxt.PublicCache(0) } }