1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* NEWS: [DOC] update NEWS about GC.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ktsj 2013-12-08 09:33:56 +00:00
parent 40468b5bf1
commit b521f42a88
2 changed files with 19 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Sun Dec 8 18:28:20 2013 Kazuki Tsujimoto <kazuki@callcc.net>
* NEWS: [DOC] update NEWS about GC.
Sun Dec 8 17:52:24 2013 Kazuki Tsujimoto <kazuki@callcc.net>
* object.c: [DOC] document Module#singleton_class?.

17
NEWS
View file

@ -49,8 +49,21 @@ with all sufficient information, see the ChangeLog file.
at where raising the new exception.
* GC
* added environment variable:
* RUBY_HEAP_SLOTS_GROWTH_FACTOR: growth rate of the heap.
* improvements:
* introduced the generational GC a.k.a RGenGC.
* added environment variables:
* RUBY_GC_HEAP_INIT_SLOTS
* RUBY_GC_HEAP_FREE_SLOTS
* RUBY_GC_HEAP_GROWTH_FACTOR
* RUBY_GC_HEAP_GROWTH_MAX_SLOTS
* RUBY_GC_MALLOC_LIMIT_MAX
* RUBY_GC_MALLOC_LIMIT_GROWTH_FACTOR
* RUBY_GC_OLDMALLOC_LIMIT
* RUBY_GC_OLDMALLOC_LIMIT_MAX
* RUBY_GC_OLDMALLOC_LIMIT_GROWTH_FACTOR
* obsoleted environment variables:
* RUBY_FREE_MIN (Use RUBY_GC_HEAP_FREE_SLOTS instead)
* RUBY_HEAP_MIN_SLOTS (Use RUBY_GC_HEAP_INIT_SLOTS instead)
* Integer
* New methods