Snc\RedisBundle\Profiler\Storage\RedisProfilerStorage::__construct PHP Method

__construct() public method

Constructor.
public __construct ( Client | Redis $redis, integer $lifetime = 86400 )
$redis Predis\Client | Redis Redis database connection
$lifetime integer The lifetime to use for the purge
    public function __construct($redis, $lifetime = 86400)
    {
        $this->redis = $redis;
        $this->lifetime = (int) $lifetime;
    }