File cache is fast and reliable, but requires many filesystem lookups. * > Database cache can be used to cache items remotely, but is slower. * > Memcache is very high performance, but prevents cache tags from being used. * * params - Driver parameters, specific to each driver. * * lifetime - Default lifetime of caches in seconds. By default caches are stored for * thirty minutes. Specific lifetime can also be set when creating a new cache. * Setting this to 0 will never automatically delete caches. * * prefix - Adds a prefix to all keys and tags. This can have a severe performance impact. * */ $config['default'] = array ( 'driver' => 'file', 'params' => array('directory' => APPPATH.'cache', 'gc_probability' => 1000), 'lifetime' => 1800, 'prefix' => NULL );