Update: Sorry about not providing details on the submission. Here is additional details on what I'm looking for I'm asking language/framework recommendation for the RESTful API that needs to be fast and secure, so security and performance of the framework is very important.
Feel free to recommend any Go/Rust framework. Also why do you prefer that language?
For Rust, I am using Actix https://github.com/actix/actix-web .
Without better definition of "secure" and "performance" there is no way to help you.
Both of them are used and exposed publicly by numerous companies, so ootb they good enough for any API. For 99.999% percent of people both are performant enough. Rust will win on memory usage, in some cases significantly, and will win on performance by a smaller margin, but run your own benchmark.
No, its not. Whatever you do with it, will be 100-1000x slower than what framework does. Making decision on something that takes 0.01% of time spend on request handling makes no sense. Optimize your code and data sources, don't worry about framework,
> Also why do you prefer that language?
Tons of modern features. Algebraic data types (this eliminates null-pointer errors completely, which you can't say about Go), generics, borrow checker, pattern matching, macros, general focus on correctness of your code. All of that composes nicely and allows to produce correct and readable code.
I just went to the download page and it says: "Mailpile packages are currently available for recent Debian-derived distributions, including Ubuntu. The packages are architecture-independent and should be compatible with most desktops, servers and embedded hardware (such as the Raspberry Pi). They have been tested on Debian 8, Debian 9 and Ubuntu 16.04 LTS."
So sounds like it will run on the Librem 5 at least.
By creating a extension which blocks AMP, for ourselves. But, if we really need to destroy AMP from internet. Unfortunately it is not really possible, unless if you have enough money to buy Google.
Actually it is possible. It doesn't have to done on client-side. You can do it via DNS settings with Pi-Hole on your network, or create your own private tunnel with Pi-Hole. After that, you need to block subdomains with amp.. Or even you can create your own iOS app for it, and yes it is also possible.
You are right. There are many Tier 1 networks so Internet can’t be destroyed easily. Even If internet dies there’s radio communication and other stuff. Like SATCOM.
Feel free to recommend any Go/Rust framework. Also why do you prefer that language?