update readmes

pull/158/head
sunface 3 years ago
parent ac66d87239
commit e23b6aa7f0

@ -213,9 +213,11 @@
- [常用性能测试工具](performance/tools.md)
- [编译器 todo](compiler/intro.md)
- [常见属性标记](compiler/attributes.md)
- [优化编译速度](compiler/speed-up.md)
- [常见属性标记 todo](compiler/attributes.md)
- [提升编译速度 todo](compiler/speed-up.md)
- [编译器优化](compiler/optimization/intro.md)
- [Option枚举](compiler/optimization/option.md)
- [日志和监控 todo](monitor/intro.md)
- [日志](monitor/log.md)
- [可观测性](monitor/observability.md)

@ -0,0 +1,3 @@
# 编译器优化
在Rust中一段很不起眼的代码中可能也隐藏着玄机编译器在细无声的为我们做着各种优化本章将记录这些优化帮助大家更好的理解程序的性能。

Binary file not shown.

@ -4,7 +4,8 @@ Rust练习题是Rust学习教程的第二步请在完成[第一步](https:
本项目从[rustling](https://github.com/rust-lang/rustlings)fork而来主要有以下改变
1. 翻译成中文
2. 为<<精通Rust编程>>一书提供相应的配套练习题
3. 未来提供一些更有针对性和更有难度的习题,官方的还是太简单了
## 开始使用
_注意: 如果你在使用MacOS确保已经安装了Xcode以及相应的开发者工具 `xcode-select --install`._

@ -1,5 +1,8 @@
# mini-redis
本项目从[tokio/mini-redis](https://github.com/tokio-rs/mini-redis)fork而来作为rust course的练习项目之一**文档和注释还未进行翻译**,欢迎大家贡献。
`mini-redis` is an incomplete, idiomatic implementation of a
[Redis](https://redis.io) client and server built with
[Tokio](https://tokio.rs).

Loading…
Cancel
Save