有可能吗?如果有的话,结合 Minimal API 和经典控制器是否有性能优势?
Is it possible and if so, is there a performance benefit in combining Minimal API and classic controllers?
我有十几个负载不太高的控制器,并且有 2 个特定的端点负载更高。
我在想:
- 是否可以将最小 api 与常规 api 端点相结合?
- 当请求到达以最小 api 实现的那 2 个端点时,在该特定情况下是否有性能优势?
我看过 Nick Chapsas 的一些视频,这些视频比较了经典版和最小版 api,仅切换到最小版就有 ~15% 的差异 api。
如果可以将两者结合起来,我肯定会去做。
Is it possible to combine minimal api with regular api endpoints?
是
Are there performance benefits in that particular case when requests land on those 2 endpoints implemented with minimal api?
是的。
我有十几个负载不太高的控制器,并且有 2 个特定的端点负载更高。
我在想:
- 是否可以将最小 api 与常规 api 端点相结合?
- 当请求到达以最小 api 实现的那 2 个端点时,在该特定情况下是否有性能优势?
我看过 Nick Chapsas 的一些视频,这些视频比较了经典版和最小版 api,仅切换到最小版就有 ~15% 的差异 api。
如果可以将两者结合起来,我肯定会去做。
Is it possible to combine minimal api with regular api endpoints?
是
Are there performance benefits in that particular case when requests land on those 2 endpoints implemented with minimal api?
是的。