We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d67f90 commit a70af95Copy full SHA for a70af95
frameworks/Rust/axum/benchmark_config.json
@@ -28,7 +28,7 @@
28
"docker_cmd": "/app/axum-sqlx",
29
"db_url": "/db",
30
"fortune_url": "/fortunes",
31
- "cached_query_url": "/cached?q=",
+ "cached_query_url": "/cached-queries?q=",
32
"port": 8000,
33
"approach": "Realistic",
34
"classification": "Fullstack",
frameworks/Rust/axum/src/main_sqlx.rs
@@ -149,7 +149,7 @@ async fn main() {
149
.route("/fortunes", get(fortunes))
150
.route("/db", get(db))
151
.route("/queries", get(queries))
152
- .route("/cached", get(cache))
+ .route("/cached-queries", get(cache))
153
.with_state(state);
154
155
server::serve_hyper(app, Some(8000)).await
0 commit comments