Removed the Model cache engine for architectural reasons, closes #4415

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6853 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
the_undefined 2008-05-13 21:25:19 +00:00
parent 3db8b860d1
commit 5c1878afec
4 changed files with 0 additions and 319 deletions

View file

@ -214,16 +214,6 @@
* 'compress' => true, // [optional] compress data in Memcache (slower, but uses less memory)
* )
* );
*
* Cake Model
* Cache::config('default', array('engine' => 'Model' //[required]
* 'duration'=> 3600, //[optional]
* 'probability'=> 100, //[optional]
* 'className' => 'Cache', //[optional]
* 'fields' => array('data' => 'data', 'expires' => 'expires'), //[optional]
* 'serialize' => true, [optional]
* )
* );
*/
Cache::config('default', array('engine' => 'File'));
?>