I have a Function
app, and I'd like to understand what happens when I change environment variables on Azure Portal. Does Azure stop the running web server and re-start it for the environment changes to be picked up?
I'm re-using static variables like System.Net.Http.HttpClient
and StackExchange.Redis.ConnectionMultiplexer
so that I don't have to open and close network connections for each request. If I change the environment config for these classes, I want them to start using the new connection strings.