Files
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
SAE_DEV2.2_2024/codeigniter/application/config/memcached.php

20 lines
498 B
PHP
Raw Normal View History

2024-05-25 00:33:32 +02:00
<?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',
),
);