Eric Barnes | 26cba2a | 2012-01-03 23:39:24 -0500 | [diff] [blame] | 1 | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
| 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Eric Barnes | 26cba2a | 2012-01-03 23:39:24 -0500 | [diff] [blame] | 6 | * |
| 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 Andreev | 80500af | 2013-01-01 08:16:53 +0200 | [diff] [blame^] | 21 | * @copyright Copyright (c) 2008 - 2013, EllisLab, Inc. (http://ellislab.com/) |
Eric Barnes | 26cba2a | 2012-01-03 23:39:24 -0500 | [diff] [blame] | 22 | * @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 Bertram | d08a510 | 2011-11-14 15:10:41 +0200 | [diff] [blame] | 28 | /* |
| 29 | | ------------------------------------------------------------------------- |
| 30 | | Memcached settings |
| 31 | | ------------------------------------------------------------------------- |
Eric Barnes | 26cba2a | 2012-01-03 23:39:24 -0500 | [diff] [blame] | 32 | | Your Memcached servers can be specified below. |
Gustav Bertram | ee04a1c | 2011-11-14 15:19:21 +0200 | [diff] [blame] | 33 | | |
Eric Barnes | 26cba2a | 2012-01-03 23:39:24 -0500 | [diff] [blame] | 34 | | See: http://codeigniter.com/user_guide/libraries/caching.html#memcached |
Gustav Bertram | d08a510 | 2011-11-14 15:10:41 +0200 | [diff] [blame] | 35 | | |
| 36 | */ |
Gustav Bertram | ee04a1c | 2011-11-14 15:19:21 +0200 | [diff] [blame] | 37 | $config = array( |
| 38 | 'default' => array( |
| 39 | 'hostname' => '127.0.0.1', |
| 40 | 'port' => '11211', |
| 41 | 'weight' => '1', |
Eric Barnes | 26cba2a | 2012-01-03 23:39:24 -0500 | [diff] [blame] | 42 | ), |
| 43 | ); |
Gustav Bertram | d08a510 | 2011-11-14 15:10:41 +0200 | [diff] [blame] | 44 | |
| 45 | /* End of file memcached.php */ |
| 46 | /* Location: ./application/config/memcached.php */ |