I'm architecting a application for azure cloud services.
This application is going to load some configuration files and other support files possibly multiple times... like DLL's, XAMLX files and others XMLs...
So for the sake of performance I was wondering if copying a blob to the cloud service local storage and then working with it would be more performatic (and possibly cheaper) than loading it from blob storage directly?
PS: I do know that local storage is not persistant and if the instance crash i loose it all, thats why everything is saved on blobs first...