@@ -1394,26 +1394,19 @@ session.cookie_samesite =
1394
1394
; http://php.net/session.serialize-handler
1395
1395
session.serialize_handler = php
1396
1396
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.
1403
1400
; Default Value: 1
1404
1401
; Development Value: 1
1405
1402
; Production Value: 1
1406
1403
; http://php.net/session.gc-probability
1407
1404
session.gc_probability = 1
1408
1405
1409
1406
; 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.
1417
1410
; Default Value: 100
1418
1411
; Development Value: 1000
1419
1412
; Production Value: 1000
0 commit comments