I have a dozen of controllers that don't take too much of a load and there are 2 particular endpoints that get higher load.
I am wondering:
- 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?
I've seen some videos by Nick Chapsas doing tests comparing classic vs minimal api and there was a difference of ~15% just by switching to minimal api.
if thats possible by combining the two, i'd definitely go for it.
CodePudding user response:
Is it possible to combine minimal api with regular api endpoints?
Yes
Are there performance benefits in that particular case when requests land on those 2 endpoints implemented with minimal api?
Yes.