summaryrefslogtreecommitdiffstats
path: root/application/config/memcached.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/config/memcached.php')
-rw-r--r--application/config/memcached.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/application/config/memcached.php b/application/config/memcached.php
new file mode 100644
index 000000000..5c23b39c1
--- /dev/null
+++ b/application/config/memcached.php
@@ -0,0 +1,19 @@
+<?php
+defined('BASEPATH') OR exit('No direct script access allowed');
+
+/*
+| -------------------------------------------------------------------------
+| Memcached settings
+| -------------------------------------------------------------------------
+| Your Memcached servers can be specified below.
+|
+| See: https://codeigniter.com/user_guide/libraries/caching.html#memcached
+|
+*/
+$config = array(
+ 'default' => array(
+ 'hostname' => '127.0.0.1',
+ 'port' => '11211',
+ 'weight' => '1',
+ ),
+);