- Creative Projects for Rust Programmers
- Carlo Milanesi
- 279字
- 2021-06-18 19:02:00
Project overview
We are going to build several projects, introducing new features in every project. Let's look at each one, as follows:
- The first project will build a stub of a service that should allow any client to upload, download, or delete files from the server. This project shows how to create a REST application programming interface (API), but it does no useful work.
- The second project will implement the API described in the previous project. It will build a service that actually allows any client to upload, download, or delete files from the server filesystem.
- The third project will build a service that allows clients to add key-value records to a memory database residing in the server process, and to recall some predefined queries built into the server. The result of such queries will be sent back to the client in plain text format.
- The fourth project will be similar to the third one, but the results will be encoded in JSON format.
Our source code is small, but it includes the Actix web crate, which in turn includes around 200 crates, and so the first build of any project will take around 10 minutes. Following any changes to the application code, a build will take from 12 to 30 seconds.
The Actix web crate has been chosen as it is the most feature-full, reliable, high-performance, and well-documented server-side web application framework for Rust.
This framework is not limited to RESTful services, as it can be used to build different kinds of server-side web software. It is an extension of the Actix net framework, which is a framework designed to implement different kinds of network services.
- C及C++程序設計(第4版)
- Vue.js 2 and Bootstrap 4 Web Development
- Leap Motion Development Essentials
- 深入淺出Windows API程序設計:編程基礎篇
- 數據結構簡明教程(第2版)微課版
- 云計算通俗講義(第3版)
- Learning Python Design Patterns(Second Edition)
- Lua程序設計(第4版)
- HTML5+CSS3網站設計教程
- Orleans:構建高性能分布式Actor服務
- RubyMotion iOS Develoment Essentials
- Mudbox 2013 Cookbook
- 實戰Python網絡爬蟲
- Mastering Drupal 8
- Django 2.0 入門與實踐