summaryrefslogtreecommitdiff
path: root/NEWS.md
diff options
context:
space:
mode:
authorJean Boussier <byroot@ruby-lang.org>2023-04-05 08:40:07 +0200
committerJean Boussier <jean.boussier@gmail.com>2023-07-17 11:20:15 +0200
commitfa30b99c34291cde7b17cc709552bc5681729a12 (patch)
tree84add14f8a2b05fcd00ca0ee3b6b1980b52e9540 /NEWS.md
parentd3bcff01583abce2fb095fc67f47e86fa7005755 (diff)
Implement Process.warmup
[Feature #18885] For now, the optimizations performed are: - Run a major GC - Compact the heap - Promote all surviving objects to oldgen Other optimizations may follow.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/7662
Diffstat (limited to 'NEWS.md')
-rw-r--r--NEWS.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/NEWS.md b/NEWS.md
index acd12a7d25..caf8860e0e 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -49,6 +49,13 @@ Note: We're only listing outstanding class updates.
* `Module#set_temporary_name` added for setting a temporary name for a module. [[Feature #19521]]
+* Process.warmup
+
+ * Notify the Ruby virtual machine that the boot sequence is finished,
+ and that now is a good time to optimize the application. This is useful
+ for long running applications. The actual optimizations performed are entirely
+ implementation specific and may change in the future without notice. [[Feature #18885]
+
## Stdlib updates
The following default gems are updated.