blob: 55949a66c0822f48fa42a0d3ed2461a163cc64fd [file] [log] [blame]
darwineld8bef8a2014-02-11 20:13:22 +01001<?php
darwineld8bef8a2014-02-11 20:13:22 +01002defined('BASEPATH') OR exit('No direct script access allowed');
Eric Barnes26cba2a2012-01-03 23:39:24 -05003
Gustav Bertramd08a5102011-11-14 15:10:41 +02004/*
5| -------------------------------------------------------------------------
6| Memcached settings
7| -------------------------------------------------------------------------
Eric Barnes26cba2a2012-01-03 23:39:24 -05008| Your Memcached servers can be specified below.
Gustav Bertramee04a1c2011-11-14 15:19:21 +02009|
Eric Barnes26cba2a2012-01-03 23:39:24 -050010| See: http://codeigniter.com/user_guide/libraries/caching.html#memcached
Gustav Bertramd08a5102011-11-14 15:10:41 +020011|
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',
Eric Barnes26cba2a2012-01-03 23:39:24 -050018 ),
19);