On Mon, Apr 18, 2011 at 10:56 AM, Krissy Masters <[email protected]> wrote: > Still no answers to my questions. No one has any insight? > > If you cache the whole action ( $cacheAction) then is it to assume you don't > need to cache the query data or the view since the whole action is cached as > 1 object? Does 1 cache take precedent over another. The actual action in the > controller is never hit (if already cached) so you would not need to cache > the query data in that action?
Yes, that's right. Dispatcher checks if there's a cached file. If yes, it loads up a View which in turn renders the cached version. No controller required. -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
