Async-graphql
is a high-performance server-side library that supports all GraphQL specifications.
This crate uses #![forbid(unsafe_code)]
to ensure everything is implemented in 100% Safe Rust.
This crate offers the following features, all of which are activated by default:
apollo_tracing
: Enable the Apollo tracing extension.log
: Enable the logger extension.tracing
: Enable the tracing extension.multipart
: Support sending files over HTTP multipart.unblock
: Support asynchronous reader for Uploadbson
: Integrate with the bson
crate.chrono
: Integrate with the chrono
crate.chrono-tz
: Integrate with the chrono-tz
crate.url
: Integrate with the url
crate.uuid
: Integrate with the uuid
crate.If you are just getting started, we recommend checking out our examples at: https://github.com/async-graphql/examples
To see how you would create a Relay-compliant server using async-graphql, warp, diesel & postgresql, you can also check out a real-world example at: https://github.com/phated/twentyfive-stars
Ensure that there is no CPU-heavy process in background!
```shell script cd benchmark
cargo bench
cargo bench -- "chat run"
cargo bench --features jemalloc
cargo bench --features jemalloc -- "simple run" ```
Now HTML report is available at benchmark/target/criterion/report
Read more here: https://bheisler.github.io/criterion.rs/book/criterion_rs.html
Licensed under either of
Welcome to contribute !