summaryrefslogtreecommitdiffstats
path: root/application/config/memcached.php
blob: 1b34aa683e3ebc3ec1a35886fc17ffbb5c1ee4ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Memcached settings
| -------------------------------------------------------------------------
| To add another server, just add another set in the array.
|
| NOTE: Memcached doesn't seem to like hostnames. Try using an IP first. 
| -GWB
|
*/

$config = array(
	'default' => array(
		'hostname' => '127.0.0.1',
		'port'     => '11211',
		'weight'   => '1',
	),      
);  

/* End of file memcached.php */
/* Location: ./application/config/memcached.php */