From 6d6480a662a3baeffce2e5bcc4c0b55ecb860e9b Mon Sep 17 00:00:00 2001 From: Alexander Shabalin Date: Tue, 21 Dec 2021 09:40:34 +0000 Subject: [PATCH] [K/N] Clarify performance expectations of the new MM Merge-request: KT-MR-5298 Merged-by: Alexander Shabalin --- kotlin-native/NEW_MM.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kotlin-native/NEW_MM.md b/kotlin-native/NEW_MM.md index 6407537d0f0..4771a9fc8d3 100644 --- a/kotlin-native/NEW_MM.md +++ b/kotlin-native/NEW_MM.md @@ -119,7 +119,8 @@ The list of known performance issues: * Look for `Worker`s that were `Worker.start`ed, but never stopped via `Worker.requestTermination()` (also, note that this call also returns a `Future`). * Make sure that `execute` and `executeAfter` are only called on `Worker`s that were `Worker.start`ed or if the receiving `Worker` manually processes events with `Worker.processQueue`. -We measured performance regressions with a slowdown up to a factor of 5. If you observe anything more significant, report to [this performance meta issue](https://youtrack.jetbrains.com/issue/KT-48526). +In some of our measurements we observed performance regressions with a slowdown up to a factor of 5. In some other cases we observed performance improvements instead. +If you observe regressions more significant than 5x, please report to [this performance meta issue](https://youtrack.jetbrains.com/issue/KT-48526). ## Known bugs