fixes #512, set session garbage collector probability

This commit is contained in:
plegall
2016-12-03 20:07:14 +01:00
parent 3959df9d45
commit 90a0e8c26c
2 changed files with 12 additions and 0 deletions
+6
View File
@@ -422,6 +422,12 @@ $conf['session_length'] = 3600;
// address
$conf['session_use_ip_address'] = true;
// Probability, on each page generated, to launch session garbage
// collector. Integer value between 1 and 100, in %. 0 to disable and let
// the system default behavior (on Debian-like, it's "never delete
// session").
$conf['session_gc_probability'] = 1;
// +-----------------------------------------------------------------------+
// | debug/performance |
// +-----------------------------------------------------------------------+