What are the reasons why I should choose ntex over actix-web or axum? #289
-
|
I realized that @fafhrd91 was the one who started actix-web and ntex but is now fully-committed to ntex (correct me if I'm wrong). Since the APIs are somewhat similar for both ntex and actix-web, what are the reasons why I should prefer on using ntex over actix-web? Same question as to why choose ntex over axum? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
you probably should use axum, it is safer option |
Beta Was this translation helpful? Give feedback.
-
|
If you are writing a web server for yourself, you can use any of these three. At the moment, I think |
Beta Was this translation helpful? Give feedback.
If you are writing a web server for yourself, you can use any of these three. At the moment, I think
actix-webis better for production. It is stable, fast (on average 10% faster thanaxumin my tests), and has integration withrustls(important for me).