sas Sat Apr 5 06:40:41 2003 EDT Modified files: (Branch: PHP_4_3) /php4 php.ini-dist php.ini-recommended Log: MFH Index: php4/php.ini-dist diff -u php4/php.ini-dist:1.171.2.10 php4/php.ini-dist:1.171.2.11 --- php4/php.ini-dist:1.171.2.10 Tue Mar 25 05:19:44 2003 +++ php4/php.ini-dist Sat Apr 5 06:40:40 2003 @@ -831,11 +831,12 @@ ; 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: php4/php.ini-recommended diff -u php4/php.ini-recommended:1.119.2.8 php4/php.ini-recommended:1.119.2.9 --- php4/php.ini-recommended:1.119.2.8 Tue Mar 25 05:19:44 2003 +++ php4/php.ini-recommended Sat Apr 5 06:40:40 2003 @@ -837,11 +837,12 @@ ; 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.
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php