function __construct($cache, $default_ttl = 300, $fake_ttl = 86400, $cooled_ttl = 60)
 {
     parent::__construct($cache);
     $this->fake_ttl = $fake_ttl;
     $this->default_ttl = $default_ttl;
     $this->cooled_ttl = $cooled_ttl;
 }
 function __construct(lmbCacheConnection $connection)
 {
     parent::__construct($connection);
 }
 function __construct($cache_connection, $cache_name = 'default_cache')
 {
     parent::__construct($cache_connection);
     $this->cache_name = $cache_name;
 }