Initial Kohana install
[speedfreak] / Server / system / config / cache_memcache.php
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
2 /**
3  * @package  Cache:Memcache
4  *
5  * memcache server configuration.
6  */
7 $config['servers'] = array
8 (
9         array
10         (
11                 'host' => '127.0.0.1',
12                 'port' => 11211,
13                 'persistent' => FALSE,
14         )
15 );
16
17 /**
18  * Enable cache data compression.
19  */
20 $config['compression'] = FALSE;