Slide 40
Slide 40 text
Conclusion
● Although developing HTTP server in Rust require 3rd party FW, Rust would be good
choice.
● Most FW use simple function as router, so you can easily replace to each library.
● For replace, let’s adopt layered architecture, and use FW in only router and controller.
● About AOP logic, If we adopt tower interface, we may be able to replace to each library
because other library also adopt tower or tower like Service. So I use tower based FW.