From fbbfe15a36bea06dd00c44350014d307fbc727e4 Mon Sep 17 00:00:00 2001 From: Evgenii Date: Mon, 26 Aug 2024 15:45:29 +0200 Subject: [PATCH] Add performance book --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 3b25d66..c3cc5fc 100644 --- a/README.md +++ b/README.md @@ -421,6 +421,13 @@ Code Like a Pro in Rust will make you a more productive Rust programmer. This ex You will learn the basics of REST APIs, followed by the ecosystem and usual system architecture around a typical REST API. We will explain how to make your API secure, scalable and observable, so you can move it to production confidently. We will also show you how to implement automated testing, continuous integration and delivery. We will provide examples for cloud deployment scenarios too. The code samples are based on the Tokio-Hyper-Tower-Axum stack. +### [The Rust Performance Book](https://nnethercote.github.io/perf-book/title-page.html) *Free* + +This book contains techniques that can improve the performance-related characteristics of Rust programs, such as runtime speed, memory usage, and binary size. This book also focuses on techniques that are practical and proven: many are accompanied by links to pull requests or other resources that show how the technique was used on a real-world Rust program. It reflects the primary author’s background, being somewhat biased towards compiler development and away from other areas such as scientific computing. + +This book is aimed at intermediate and advanced Rust users. Beginner Rust users have more than enough to learn and these techniques are likely to be an unhelpful distraction to them. + + **Resources** ====