App Services: Send Message to all instances of an app in the app pool
Lets say I have a Function App running in App Services and it has 1-5 instances of the app at any given time (based off scale settings). Our application is not big enough to warrant a Redis Cache so we have been using local caching but when certain changes are made we want to let all the instances know to refresh that part of the cache but when we send a message to the function app only 1 instance will receive the message and it takes sending the message 20+ times to ensure that all instances have received it. Is there a way to make sure the message is received by all instances of the app?