I have an Azure Function App, and sometimes, I notice that the function API (HTTP triggered) takes longer to respond. I believe this is due to cold starts.
Within my Function App, I have a function, which is a timer, that is triggered every minute.
Given that the Function App is active every minute, shouldn't cold starts be avoided on my Function App?
Thanks.