So I am testing Azure App Configuration. https://learn.microsoft.com/en-us/azure/azure-app-configuration/quickstart-dotnet-core-app
I am trying free plan for this, which has 1000 requests limit.
My App Config store would have somewhere around 50 configs stored in it, which I retrieved in my startup.cs
file, which, I guess is loaded only once when I start my Azure Functions.
But to my surprise, after testing it for a couple of times, it's returning 429 - Request throttled. So my question is, how Azure counts request to App Config? Is it per store or per config key-value?