php Programming Glossary: session.gc_divisor
Session timeouts in PHP: best practices http://stackoverflow.com/questions/1236374/session-timeouts-in-php-best-practices session is loaded and by using session.gc_probability and session.gc_divisor it calculates the probability that garbage collection will run...
How long will my session last? http://stackoverflow.com/questions/1516266/how-long-will-my-session-last no value no value session.entropy_length 0 0 session.gc_divisor 1000 1000 session.gc_maxlifetime 1440 1440 session.gc_probability.. with a probability of session.gc_probability devided by session.gc_divisor . The default values are 1 and 100 so the garbage collector..
Auth timeout problems with CakePHP http://stackoverflow.com/questions/3564217/auth-timeout-problems-with-cakephp at the moment on one site timed out after about an hour session.gc_divisor 1000 session.gc_maxlifetime 86400 session.gc_probability 1 Configure.. 'Security.level' 'medium' And another lasted all night session.gc_divisor 100 session.gc_maxlifetime 14400 session.gc_probability 0 Configure..
PHP configuration to enable sessions http://stackoverflow.com/questions/3740791/php-configuration-to-enable-sessions no value no value session.entropy_length 0 0 session.gc_divisor 100 100 session.gc_maxlifetime 1440 1440 session.gc_probability..
PHP session variables not being maintaned http://stackoverflow.com/questions/4358525/php-session-variables-not-being-maintaned no value no value session.entropy_length 0 0 session.gc_divisor 1000 1000 session.gc_maxlifetime 1440 1440 session.gc_probability..
How do I expire a PHP session after 30 minutes? http://stackoverflow.com/questions/520237/how-do-i-expire-a-php-session-after-30-minutes with a probability of session.gc_probability divided by session.gc_divisor . And using the default values for that options 1 and 100 respectively..
cleanup php session files http://stackoverflow.com/questions/654310/cleanup-php-session-files . There you'll find these variables session.gc_probability session.gc_divisor session.gc_maxlifetime These control the garbage collector GC..
|