blob: 373536d44984dc4183c05ead03a7358903205bd5 [file] [log] [blame]
darwineld8bef8a2014-02-11 20:13:22 +01001<?php
Eric Barnes26cba2a2012-01-03 23:39:24 -05002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Eric Barnes26cba2a2012-01-03 23:39:24 -05006 *
7 * NOTICE OF LICENSE
8 *
9 * Licensed under the Academic Free License version 3.0
10 *
11 * This source file is subject to the Academic Free License (AFL 3.0) that is
12 * bundled with this package in the files license_afl.txt / license_afl.rst.
13 * It is also available through the world wide web at this URL:
14 * http://opensource.org/licenses/AFL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
19 * @package CodeIgniter
20 * @author EllisLab Dev Team
darwinel871754a2014-02-11 17:34:57 +010021 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Eric Barnes26cba2a2012-01-03 23:39:24 -050022 * @license http://opensource.org/licenses/AFL-3.0 Academic Free License (AFL 3.0)
23 * @link http://codeigniter.com
24 * @since Version 2.0
25 * @filesource
26 */
darwineld8bef8a2014-02-11 20:13:22 +010027defined('BASEPATH') OR exit('No direct script access allowed');
Eric Barnes26cba2a2012-01-03 23:39:24 -050028
Gustav Bertramd08a5102011-11-14 15:10:41 +020029/*
30| -------------------------------------------------------------------------
31| Memcached settings
32| -------------------------------------------------------------------------
Eric Barnes26cba2a2012-01-03 23:39:24 -050033| Your Memcached servers can be specified below.
Gustav Bertramee04a1c2011-11-14 15:19:21 +020034|
Eric Barnes26cba2a2012-01-03 23:39:24 -050035| See: http://codeigniter.com/user_guide/libraries/caching.html#memcached
Gustav Bertramd08a5102011-11-14 15:10:41 +020036|
37*/
Gustav Bertramee04a1c2011-11-14 15:19:21 +020038$config = array(
39 'default' => array(
40 'hostname' => '127.0.0.1',
41 'port' => '11211',
42 'weight' => '1',
Eric Barnes26cba2a2012-01-03 23:39:24 -050043 ),
44);
Gustav Bertramd08a5102011-11-14 15:10:41 +020045
46/* End of file memcached.php */
47/* Location: ./application/config/memcached.php */