Is there any way to send requests to all active instances of a module/service in Google App Engine?
If I can get the list of all the active instances ids, I could make a request like https://instance-dot-version-dot-service-dot-app-id.appspot.com for each instance.
I need this to change some memory's global variables (that saves me requests to datastore or memcache and time) in very unusual cases. If they were frequent changes I obviously would prefer to use memcache...