blob: b35730d3412392d53534e82b577103d754e23928 [file] [log] [blame]
darwineld8bef8a2014-02-11 20:13:22 +01001<?php
Eric Barnes26cba2a2012-01-03 23:39:24 -05002/**
3 * CodeIgniter
4 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02005 * An open source application development framework for PHP
Eric Barnes26cba2a2012-01-03 23:39:24 -05006 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02007 * This content is released under the MIT License (MIT)
Eric Barnes26cba2a2012-01-03 23:39:24 -05008 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02009 * Copyright (c) 2014 - 2015, British Columbia Institute of Technology
Eric Barnes26cba2a2012-01-03 23:39:24 -050010 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020011 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
Eric Barnes26cba2a2012-01-03 23:39:24 -050017 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020018 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 * THE SOFTWARE.
28 *
29 * @package CodeIgniter
30 * @author EllisLab Dev Team
darwinel871754a2014-02-11 17:34:57 +010031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Andrey Andreevfe9309d2015-01-09 17:48:58 +020032 * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020033 * @license http://opensource.org/licenses/MIT MIT License
34 * @link http://codeigniter.com
35 * @since Version 2.0.0
Eric Barnes26cba2a2012-01-03 23:39:24 -050036 * @filesource
37 */
darwineld8bef8a2014-02-11 20:13:22 +010038defined('BASEPATH') OR exit('No direct script access allowed');
Eric Barnes26cba2a2012-01-03 23:39:24 -050039
Gustav Bertramd08a5102011-11-14 15:10:41 +020040/*
41| -------------------------------------------------------------------------
42| Memcached settings
43| -------------------------------------------------------------------------
Eric Barnes26cba2a2012-01-03 23:39:24 -050044| Your Memcached servers can be specified below.
Gustav Bertramee04a1c2011-11-14 15:19:21 +020045|
Eric Barnes26cba2a2012-01-03 23:39:24 -050046| See: http://codeigniter.com/user_guide/libraries/caching.html#memcached
Gustav Bertramd08a5102011-11-14 15:10:41 +020047|
48*/
Gustav Bertramee04a1c2011-11-14 15:19:21 +020049$config = array(
50 'default' => array(
51 'hostname' => '127.0.0.1',
52 'port' => '11211',
53 'weight' => '1',
Eric Barnes26cba2a2012-01-03 23:39:24 -050054 ),
55);
Gustav Bertramd08a5102011-11-14 15:10:41 +020056
57/* End of file memcached.php */
58/* Location: ./application/config/memcached.php */