@@ -1421,26 +1421,19 @@ session.cookie_samesite =
1421
1421
; http://php.net/session.serialize-handler
1422
1422
session.serialize_handler = php
1423
1423
1424
- ; Defines the probability that the 'garbage collection' process is started
1425
- ; on every session initialization. The probability is calculated by using
1426
- ; gc_probability/gc_divisor. Where session.gc_probability is the numerator
1427
- ; and gc_divisor is the denominator in the equation. Setting this value to 1
1428
- ; when the session.gc_divisor value is 100 will give you approximately a 1% chance
1429
- ; the gc will run on any given request.
1424
+ ; Defines the probability that the 'garbage collection' process is started on every
1425
+ ; session initialization. The probability is calculated by using gc_probability/gc_divisor,
1426
+ ; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
1430
1427
; Default Value: 1
1431
1428
; Development Value: 1
1432
1429
; Production Value: 1
1433
1430
; http://php.net/session.gc-probability
1434
1431
session.gc_probability = 1
1435
1432
1436
1433
; Defines the probability that the 'garbage collection' process is started on every
1437
- ; session initialization. The probability is calculated by using the following equation:
1438
- ; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
1439
- ; session.gc_divisor is the denominator in the equation. Setting this value to 100
1440
- ; when the session.gc_probability value is 1 will give you approximately a 1% chance
1441
- ; the gc will run on any given request. Increasing this value to 1000 will give you
1442
- ; a 0.1% chance the gc will run on any given request. For high volume production servers,
1443
- ; this is a more efficient approach.
1434
+ ; session initialization. The probability is calculated by using gc_probability/gc_divisor,
1435
+ ; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
1436
+ ; For high volume production servers, using a value of 1000 is a more efficient approach.
1444
1437
; Default Value: 100
1445
1438
; Development Value: 1000
1446
1439
; Production Value: 1000
0 commit comments