diff options
author | Stephan Renatus <srenatus@chef.io> | 2019-05-17 13:15:46 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-05-17 07:15:46 -0400 |
commit | e3e9021d23301ba7ee16dfb2eabc286de38a22cf (patch) | |
tree | 531f7e1fec2f11f2e761df6b04a1911fb7fd8f9e | |
parent | c3a30dd3c3ecf476ed01a2fbb7c7130e17b98340 (diff) |
website: fix workers benchmark links (#2370)
Signed-off-by: Stephan Renatus <srenatus@chef.io>
-rw-r--r-- | website/benchmarks.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/website/benchmarks.html b/website/benchmarks.html index 72c10f9b3..a307fcdad 100644 --- a/website/benchmarks.html +++ b/website/benchmarks.html @@ -108,12 +108,12 @@ >tests/003_relative_import.ts</a >, <a - href="https://github.com/denoland/deno/blob/master/tests/worker_round_robin_bench.ts" - >tests/worker_round_robin_bench.ts</a + href="https://github.com/denoland/deno/blob/master/tests/workers_round_robin_bench.ts" + >tests/workers_round_robin_bench.ts</a >, and <a - href="https://github.com/denoland/deno/blob/master/tests/worker_startup_bench.ts" - >tests/worker_startup_bench.ts</a + href="https://github.com/denoland/deno/blob/master/tests/workers_startup_bench.ts" + >tests/workers_startup_bench.ts</a >. For deno to execute typescript, it must first compile it to JS. A warm startup is when deno has a cached JS output already, so it should be fast because it bypasses the TS compiler. A cold startup is when deno |