Memcache component

By Jiri Kupiainen (jiri)
A component for using Memcache to cache data from your controllers
Needs the Memcache class. You can get the full package with instructions from my site.

Following goes in /app/controllers/components/memcache.php:

Download code
<?php
/**
 * Wrapper for Memcache, v. 0.1
 *
 * By Jiri Kupiainen (http://jirikupiainen.com/)
 *
 * You are free to do whatever you please with this code. Enjoy.
 */
vendor('Memcache');

class 
MemcacheComponent extends CakeMemcache {
        function 
startup(&$controller) {
                
$this->_connect();
        }
}
?>