codeigniter
application
cache
config
autoload.php
config.php
constants.php
database.php
doctypes.php
foreign_chars.php
hooks.php
index.html
memcached.php
migration.php
mimes.php
profiler.php
routes.php
smileys.php
user_agents.php
controllers
core
helpers
hooks
language
libraries
logs
models
third_party
views
.htaccess
index.html
assets
system
.editorconfig
.gitignore
composer.json
index.php
license.txt
readme.rst
.gitignore
README.md
test1.txt
20 lines
498 B
PHP
20 lines
498 B
PHP
|
<?php
|
||
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
||
|
|
||
|
/*
|
||
|
| -------------------------------------------------------------------------
|
||
|
| Memcached settings
|
||
|
| -------------------------------------------------------------------------
|
||
|
| Your Memcached servers can be specified below.
|
||
|
|
|
||
|
| See: https://codeigniter.com/userguide3/libraries/caching.html#memcached
|
||
|
|
|
||
|
*/
|
||
|
$config = array(
|
||
|
'default' => array(
|
||
|
'hostname' => '127.0.0.1',
|
||
|
'port' => '11211',
|
||
|
'weight' => '1',
|
||
|
),
|
||
|
);
|