]> granicus.if.org Git - php/commitdiff
dividend -> divisor
authorSascha Schumann <sas@php.net>
Sat, 5 Apr 2003 11:38:13 +0000 (11:38 +0000)
committerSascha Schumann <sas@php.net>
Sat, 5 Apr 2003 11:38:13 +0000 (11:38 +0000)
php.ini-dist
php.ini-recommended

index 779c9e64a95d4424a1bf0cd116cc75f97c7f59c3..c7e586970cbfa666d75d3eab0e15fa4f450c30ea 100644 (file)
@@ -850,11 +850,12 @@ session.serialize_handler = php
 
 ; Define the probability that the 'garbage collection' process is started
 ; on every session initialization.
-; The probability is calculated by using gc_probability/gc_dividend,
-; e.g. 1/100 means 1%.
+; The probability is calculated by using gc_probability/gc_divisor,
+; e.g. 1/100 means there is a 1% chance that the GC process starts
+; on each request.
 
 session.gc_probability = 1
-session.gc_dividend    = 100
+session.gc_divisor     = 100
 
 ; After this number of seconds, stored data will be seen as 'garbage' and
 ; cleaned up by the garbage collection process.
index d38dde0edf328818dd40f8db4a73f38c993dfe61..9e5650fcc4a411e94105bb640ea8caa8e84b297c 100644 (file)
@@ -867,11 +867,12 @@ session.serialize_handler = php
 
 ; Define the probability that the 'garbage collection' process is started
 ; on every session initialization.
-; The probability is calculated by using gc_probability/gc_dividend,
-; e.g. 1/100 means 1%.
+; The probability is calculated by using gc_probability/gc_divisor,
+; e.g. 1/100 means there is a 1% chance that the GC process starts
+; on each request.
 
 session.gc_probability = 1
-session.gc_dividend    = 1000
+session.gc_divisor     = 1000
 
 ; After this number of seconds, stored data will be seen as 'garbage' and
 ; cleaned up by the garbage collection process.