tweaking some comments.
This commit is contained in:
parent
866f5d8fc3
commit
b3cdcb38a6
|
@ -274,10 +274,10 @@ public static function close()
|
||||||
|
|
||||||
static::$transporter->put(static::$session['id'], $config);
|
static::$transporter->put(static::$session['id'], $config);
|
||||||
|
|
||||||
// Some session drivers may implement the Sweeper interface, meaning the
|
// Some session drivers clean-up expired sessions manually; however, since
|
||||||
// driver must do its garbage collection manually. Alternatively, some
|
// this can be an expensive process, it is only performed once in a while.
|
||||||
// drivers such as APC and Memcached are not required to manually
|
// The probability of session garbage collection occuring for any given
|
||||||
// clean up their sessions.
|
// request is controlled by the "sweepage" configuration option.
|
||||||
$sweep = (mt_rand(1, $config['sweepage'][1]) <= $config['sweepage'][0]);
|
$sweep = (mt_rand(1, $config['sweepage'][1]) <= $config['sweepage'][0]);
|
||||||
|
|
||||||
if ($sweep and static::$driver instanceof Drivers\Sweeper)
|
if ($sweep and static::$driver instanceof Drivers\Sweeper)
|
||||||
|
|
Loading…
Reference in New Issue