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
63 changes: 0 additions & 63 deletions frameworks/Rust/water-http/benchmark_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,69 +22,6 @@
"os": "Linux",
"database_os": "Linux",
"display_name": "water_http"
},

"db": {
"fortune_url": "/fortunes",
"db_url": "/db",
"query_url": "/queries?q=",
"update_url": "/updates?q=",
"port": 8080,
"approach": "Realistic",
"classification": "Fullstack",
"database": "Postgres",
"framework": "water_http",
"language": "Rust",
"orm": "raw",
"platform": "Rust",
"webserver": "water_http",
"os": "Linux",
"database_os": "Linux",
"display_name": "water_http"
},

"cached": {
"cached_query_url": "/cached-queries?q=",
"port": 8080,
"approach": "Realistic",
"classification": "Fullstack",
"database": "Postgres",
"framework": "water_http",
"language": "Rust",
"orm": "raw",
"platform": "Rust",
"webserver": "water_http",
"os": "Linux",
"database_os": "Linux",
"display_name": "water_http"
},
"json": {
"json_url": "/json",
"port": 8080,
"approach": "Realistic",
"classification": "Fullstack",
"framework": "water_http",
"language": "Rust",
"orm": "raw",
"platform": "Rust",
"webserver": "water_http",
"os": "Linux",
"database_os": "Linux",
"display_name": "water_http"
},
"plaintext": {
"plaintext_url": "/plaintext",
"port": 8080,
"approach": "Realistic",
"classification": "Fullstack",
"framework": "water_http",
"language": "Rust",
"orm": "raw",
"platform": "Rust",
"webserver": "water_http",
"os": "Linux",
"database_os": "Linux",
"display_name": "water_http"
}
}
]
Expand Down
13 changes: 0 additions & 13 deletions frameworks/Rust/water-http/water-http-cached.dockerfile

This file was deleted.

13 changes: 0 additions & 13 deletions frameworks/Rust/water-http/water-http-db.dockerfile

This file was deleted.

13 changes: 0 additions & 13 deletions frameworks/Rust/water-http/water-http-json.dockerfile

This file was deleted.

13 changes: 0 additions & 13 deletions frameworks/Rust/water-http/water-http-plaintext.dockerfile

This file was deleted.

4 changes: 2 additions & 2 deletions frameworks/Rust/water-http/water-http.dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM rust:latest
FROM rust:1.93

RUN apt-get update -yqq && apt-get install -yqq cmake g++

ADD ./ /water
WORKDIR /water
COPY . .

RUN cargo clean
RUN RUSTFLAGS="-C target-cpu=native" cargo build --release --bin water-http --features all
Expand Down
Loading