Skip to content

Commit

Permalink
even more benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
afinch7 committed Apr 5, 2019
1 parent 1482b4c commit e72ff9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/workers_round_robin_bench.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const data = "HTTP/1.1 200 OK\r\nContent-Length: 12\r\n\r\nHello World\n";
const workerCount = 8;
const cmdsPerWorker = 1000;
const cmdsPerWorker = 10000;

export interface ResolvableMethods<T> {
resolve: (value?: T | PromiseLike<T>) => void;
Expand Down
2 changes: 1 addition & 1 deletion tests/workers_startup_bench.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const workerCount = 200;
const workerCount = 1000;

async function bench(): Promise<void> {
const workers: Worker[] = [];
Expand Down

0 comments on commit e72ff9f

Please sign in to comment.