views:

30

answers:

1

i use var $cacheAction = '1 hour'; cakephp create file xxx_view_1245.php in cache/views/ , it cached. but if i use

var $cacheAction = array(
          'view/' => '1 hour'
 );

cakephp dont cache, i dont know why , please help me

A: 

if I use var

$cacheAction = array(
          'view' => '1 hour',
          'index'=>'1 hour'
 );

then it'll cache. WTF documentation: http://book.cakephp.org/view/1380/Caching-in-the-Controller.

meotimdihia