mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-05 17:22:36 +00:00
5d9035ddc1
In brief, this commit: * Updates to the latest upstream 'cookie', fixing a memory leak. * Make changes to 'CookieJar' observable only through 'pending()'. * Deprecates 'Client::new()' in favor of 'Client::tracked()'. * Makes 'dispatch()' on tracked 'Client's synchronize on cookies. * Makes 'Client::untracked()' actually untracked. This commit updates to the latest 'cookie' which removes support for 'Sync' cookie jars. Instead of relying on 'cookie', this commit implements an op-log based 'CookieJar' which internally keeps track of changes. The API is such that changes are only observable through specialized '_pending()' methods.
53 lines
1.5 KiB
Rust
53 lines
1.5 KiB
Rust
#[macro_use] extern crate rocket;
|
|
#[macro_use] extern crate bencher;
|
|
|
|
use rocket::local::blocking::Client;
|
|
use rocket::config::{Environment, Config, LoggingLevel};
|
|
|
|
#[get("/", format = "application/json")]
|
|
fn get() -> &'static str { "get" }
|
|
|
|
#[post("/", format = "application/json")]
|
|
fn post() -> &'static str { "post" }
|
|
|
|
fn rocket() -> rocket::Rocket {
|
|
let config = Config::build(Environment::Production).log_level(LoggingLevel::Off);
|
|
rocket::custom(config.unwrap()).mount("/", routes![get, post])
|
|
}
|
|
|
|
use bencher::Bencher;
|
|
use rocket::http::{Accept, ContentType};
|
|
|
|
fn accept_format(b: &mut Bencher) {
|
|
let client = Client::tracked(rocket()).unwrap();
|
|
let request = client.get("/").header(Accept::JSON);
|
|
b.iter(|| { request.clone().dispatch(); });
|
|
}
|
|
|
|
fn wrong_accept_format(b: &mut Bencher) {
|
|
let client = Client::tracked(rocket()).unwrap();
|
|
let request = client.get("/").header(Accept::HTML);
|
|
b.iter(|| { request.clone().dispatch(); });
|
|
}
|
|
|
|
fn content_type_format(b: &mut Bencher) {
|
|
let client = Client::tracked(rocket()).unwrap();
|
|
let request = client.post("/").header(ContentType::JSON);
|
|
b.iter(|| { request.clone().dispatch(); });
|
|
}
|
|
|
|
fn wrong_content_type_format(b: &mut Bencher) {
|
|
let client = Client::tracked(rocket()).unwrap();
|
|
let request = client.post("/").header(ContentType::Plain);
|
|
b.iter(|| { request.clone().dispatch(); });
|
|
}
|
|
|
|
benchmark_main!(benches);
|
|
benchmark_group! {
|
|
benches,
|
|
accept_format,
|
|
wrong_accept_format,
|
|
content_type_format,
|
|
wrong_content_type_format,
|
|
}
|