if I have this :
Router::connect(
'/search/:crit',
array('controller' => 'search', 'action' => 'index'),
array('crit'=>'(.+)')
);
How do I view cache the output?
Along with var $helpers = array( 'Cache');
I've tried
var $cacheAction = array('index/*' => 3400);
var $cacheAction = array('index/:crit' => 3400);
var $cacheAction = array('index/(.+)' => 3400);
There must be some way to do this.
Thanks!
Andre
--
DRE
http://www.increasetheknowledge.com
http://www.theanticool.com
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---