Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frameworks/deso/framework.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"description": "A simple & fast HTTP web framework for Deno",
"website": "https://github.com/gothammm/deso",
"benchmarks": {
"hello_bench": "deno run -A --unstable hello_bench.ts"
"hello_bench": "deno run -A hello_bench.ts"
}
}
2 changes: 1 addition & 1 deletion frameworks/deso/hello_bench.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Deso } from "https://deno.land/x/deso/mod.ts";
import { Deso } from "jsr:@deso/core";

const app = new Deso();

Expand Down
27 changes: 6 additions & 21 deletions frameworks/deso/results/hello_bench.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
{
"summary": {
"successRate": 0,
"total": 10.001060157,
"total": 0,
"slowest": null,
"fastest": null,
"average": null,
"requestsPerSec": 88684.09809326178,
"requestsPerSec": 0,
"totalData": 0,
"sizePerRequest": null,
"sizePerSec": 0
},
"responseTimeHistogram": {
"NaN": 0
},
"responseTimeHistogram": {},
"latencyPercentiles": {
"p10": null,
"p25": null,
Expand All @@ -36,20 +34,7 @@
"p99": null
}
},
"details": {
"DNSDialup": {
"average": 0,
"fastest": null,
"slowest": null
},
"DNSLookup": {
"average": 0,
"fastest": null,
"slowest": null
}
},
"details": {},
"statusCodeDistribution": {},
"errorDistribution": {
"Connection refused (os error 111)": 886935
}
}
"errorDistribution": {}
}
Loading