blob: 714e81f6b0b35c4d0ce2003276be1c2627e931ac [file] [log] [blame]
Eric Barnes26cba2a2012-01-03 23:39:24 -05001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
2/**
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
Andrey Andreev80500af2013-01-01 08:16:53 +020021 * @copyright Copyright (c) 2008 - 2013, 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 */
27
Gustav Bertramd08a5102011-11-14 15:10:41 +020028/*
29| -------------------------------------------------------------------------
30| Memcached settings
31| -------------------------------------------------------------------------
Eric Barnes26cba2a2012-01-03 23:39:24 -050032| Your Memcached servers can be specified below.
Gustav Bertramee04a1c2011-11-14 15:19:21 +020033|
Eric Barnes26cba2a2012-01-03 23:39:24 -050034| See: http://codeigniter.com/user_guide/libraries/caching.html#memcached
Gustav Bertramd08a5102011-11-14 15:10:41 +020035|
36*/
Gustav Bertramee04a1c2011-11-14 15:19:21 +020037$config = array(
38 'default' => array(
39 'hostname' => '127.0.0.1',
40 'port' => '11211',
41 'weight' => '1',
Eric Barnes26cba2a2012-01-03 23:39:24 -050042 ),
43);
Gustav Bertramd08a5102011-11-14 15:10:41 +020044
45/* End of file memcached.php */
46/* Location: ./application/config/memcached.php */