Removed dep on API
[ninja.git] / system / config / cache_memcache.php
blob43d8f2057e58bdda7827d265b34162b81ad6b622
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
2 /**
3 * @package Cache:Memcache
5 * memcache server configuration.
6 */
7 $config['servers'] = array
9 array
11 'host' => '127.0.0.1',
12 'port' => 11211,
13 'persistent' => FALSE,
17 /**
18 * Enable cache data compression.
20 $config['compression'] = FALSE;