summaryrefslogtreecommitdiff
path: root/std/manual.md
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-01-30 10:49:33 -0500
committerGitHub <noreply@github.com>2020-01-30 10:49:33 -0500
commit2338e7679c8840314642dbf3ea838908f5f35d3c (patch)
treefd8a56d12bc84167e306fb7fdf71a32ab86362ad /std/manual.md
parent51089836eb835d6b4cc03653dcb0b7a281017157 (diff)
Remove --current-thread flag (#3830)
This flag was added to evaluate performance relative to tokio's threaded runtime. Although it's faster in the HTTP benchmark, it's clear the runtime is not the only perf problem. Removing this flag will simplify further refactors, in particular adopting the #[tokio::main] macro. This will be done in a follow up. Ultimately we expect to move to the current thread runtime with Isolates pinned to specific threads, but that will be a much larger refactor. The --current-thread just complicates that effort.
Diffstat (limited to 'std/manual.md')
-rw-r--r--std/manual.md3
1 files changed, 0 insertions, 3 deletions
diff --git a/std/manual.md b/std/manual.md
index c3117bd9d..d97e42705 100644
--- a/std/manual.md
+++ b/std/manual.md
@@ -1267,9 +1267,6 @@ Useful V8 flags during profiling:
- --log-source-code
- --track-gc-object-stats
-Note that you might need to run Deno with `--current-thread` flag to capture
-full V8 profiling output.
-
To learn more about `d8` and profiling, check out the following links:
- [https://v8.dev/docs/d8](https://v8.dev/docs/d8)