@@ -1394,26 +1394,19 @@ session.cookie_samesite =
13941394; http://php.net/session.serialize-handler
13951395session.serialize_handler = php
13961396
1397- ; Defines the probability that the 'garbage collection' process is started
1398- ; on every session initialization. The probability is calculated by using
1399- ; gc_probability/gc_divisor. Where session.gc_probability is the numerator
1400- ; and gc_divisor is the denominator in the equation. Setting this value to 1
1401- ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
1402- ; the gc will run on any given request.
1397+ ; Defines the probability that the 'garbage collection' process is started on every
1398+ ; session initialization. The probability is calculated by using gc_probability/gc_divisor,
1399+ ; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
14031400; Default Value: 1
14041401; Development Value: 1
14051402; Production Value: 1
14061403; http://php.net/session.gc-probability
14071404session.gc_probability = 1
14081405
14091406; Defines the probability that the 'garbage collection' process is started on every
1410- ; session initialization. The probability is calculated by using the following equation:
1411- ; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
1412- ; session.gc_divisor is the denominator in the equation. Setting this value to 100
1413- ; when the session.gc_probability value is 1 will give you approximately a 1% chance
1414- ; the gc will run on any given request. Increasing this value to 1000 will give you
1415- ; a 0.1% chance the gc will run on any given request. For high volume production servers,
1416- ; this is a more efficient approach.
1407+ ; session initialization. The probability is calculated by using gc_probability/gc_divisor,
1408+ ; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
1409+ ; For high volume production servers, using a value of 1000 is a more efficient approach.
14171410; Default Value: 100
14181411; Development Value: 1000
14191412; Production Value: 1000
0 commit comments