diff options
Diffstat (limited to 'application/config/example')
-rw-r--r-- | application/config/example/memcache.php | 9 | ||||
-rw-r--r-- | application/config/example/memcached.php | 17 |
2 files changed, 17 insertions, 9 deletions
diff --git a/application/config/example/memcache.php b/application/config/example/memcache.php deleted file mode 100644 index a5bc7e3a8..000000000 --- a/application/config/example/memcache.php +++ /dev/null @@ -1,9 +0,0 @@ -<?php - -// this file is a config example for the codeigniter-memcache library -// add this file to the your application's config directory -$config["MEMCACHE_HOST"] = '127.0.0.1'; -$config["MEMCACHE_PORT"] = 11211; - - -?> diff --git a/application/config/example/memcached.php b/application/config/example/memcached.php new file mode 100644 index 000000000..29b145ec8 --- /dev/null +++ b/application/config/example/memcached.php @@ -0,0 +1,17 @@ +<?php + +$config = array( + "default" => array( + "hostname" => "127.0.0.1", + "port" => 11211, + "weight" => 1, + ), + "socket" => array( + "hostname" => FCPATH.'/memcached.sock', + "port" => 0, + "weight" => 2, + ), +); + + +?> |