blob: 1b34aa683e3ebc3ec1a35886fc17ffbb5c1ee4ba [file] [log] [blame]
Gustav Bertramd08a5102011-11-14 15:10:41 +02001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
2/*
3| -------------------------------------------------------------------------
4| Memcached settings
5| -------------------------------------------------------------------------
Gustav Bertramee04a1c2011-11-14 15:19:21 +02006| To add another server, just add another set in the array.
7|
8| NOTE: Memcached doesn't seem to like hostnames. Try using an IP first.
9| -GWB
Gustav Bertramd08a5102011-11-14 15:10:41 +020010|
11*/
12
Gustav Bertramee04a1c2011-11-14 15:19:21 +020013$config = array(
14 'default' => array(
15 'hostname' => '127.0.0.1',
16 'port' => '11211',
17 'weight' => '1',
18 ),
Gustav Bertramd08a5102011-11-14 15:10:41 +020019);
20
21/* End of file memcached.php */
22/* Location: ./application/config/memcached.php */