diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-04-20 16:25:04 +0200 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-04-20 16:25:04 +0200 |
commit | 0688ac9ad88a03f1c56cfcd9e3c475b83301344d (patch) | |
tree | 6b6ffd771dc66b8c94a54c45449f285f4ce206a2 /system/libraries/Cache/drivers/Cache_memcached.php | |
parent | 67cb3eef37fa826f56f61cfd2ac597052d9051f9 (diff) |
Start comment cleanup of libraries
Diffstat (limited to 'system/libraries/Cache/drivers/Cache_memcached.php')
-rw-r--r-- | system/libraries/Cache/drivers/Cache_memcached.php | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/system/libraries/Cache/drivers/Cache_memcached.php b/system/libraries/Cache/drivers/Cache_memcached.php index 4cd5f3d6f..813df4b1c 100644 --- a/system/libraries/Cache/drivers/Cache_memcached.php +++ b/system/libraries/Cache/drivers/Cache_memcached.php @@ -36,15 +36,25 @@ */ class CI_Cache_memcached extends CI_Driver { - protected $_memcached; // Holds the memcached object + /** + * Holds the memcached object + * + * @var object + */ + protected $_memcached; + /** + * Memcached configuration + * + * @var array + */ protected $_memcache_conf = array( - 'default' => array( - 'default_host' => '127.0.0.1', - 'default_port' => 11211, - 'default_weight' => 1 - ) - ); + 'default' => array( + 'default_host' => '127.0.0.1', + 'default_port' => 11211, + 'default_weight' => 1 + ) + ); /** * Fetch from cache |