January 2019
Intermediate to advanced
520 pages
14h 32m
English
We will try to apply three optimizations to the code we created in the previous section:
After we implement them, we will check the performance after the first two improvements, and later check it again with caching.
In the code of this section, we will implement all optimizations gradually, step by step, but if you downloaded the example from the GitHub repository of this book, you will find the following features in the Cargo.toml file of the project of this chapter:
[features]default = []cache = []rwlock = []borrow = []fast = ["cache", "rwlock", "borrow"]
The code here uses features to provide ...
Read now
Unlock full access