|
|
|
|
|
by scapegoat2
1071 days ago
|
|
I would definitely not call serving HTML from Azure Functions next-gen. You are increasing the response time by 20-30ms just by using HTTP-Functions instead of plain ASP.NET (lots of abstractions and grpc channel to worker processes). Beyond that you will get long cold starts, no response-streaming and slow scaling. The cost of the consumption-based plan will skyrocket after small number of requests compared to serving from dedicated App Service. |
|
I am not sure what you are referring to with GRPC channels and worker processes.