summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
Diffstat (limited to 'application')
-rw-r--r--application/config/memcached.php15
1 files changed, 10 insertions, 5 deletions
diff --git a/application/config/memcached.php b/application/config/memcached.php
index d2ece65cc..1b34aa683 100644
--- a/application/config/memcached.php
+++ b/application/config/memcached.php
@@ -3,14 +3,19 @@
| -------------------------------------------------------------------------
| Memcached settings
| -------------------------------------------------------------------------
-| Memcached doesn't seem to like hostnames. Try use an IP first. -GWB
+| To add another server, just add another set in the array.
+|
+| NOTE: Memcached doesn't seem to like hostnames. Try using an IP first.
+| -GWB
|
*/
-$config['default'] = array(
- 'hostname' => '127.0.0.1',
- 'port' => '11211',
- 'weight' => '1'
+$config = array(
+ 'default' => array(
+ 'hostname' => '127.0.0.1',
+ 'port' => '11211',
+ 'weight' => '1',
+ ),
);
/* End of file memcached.php */