Orientation in Azure

0

I have a database mounted in azure , the problem here is that I use php files to get the values in Json and thus display them in Android Studio , but the platform charges me for the use of the application on Android, my question is does anyone know how to avoid this, or some other alternative ?, some guidance of those who already used azure.

    
asked by DoubleM 03.01.2017 в 01:42
source

1 answer

1

Greetings dear to what you mean by "guidance"? In Azure you would have your database, your REST services in PHP, right?

Azure would charge you for bandwidth, hours of processing and DTUs in the database consumed by your android application. But I would not charge you for the android application as such, since the android app runs on the devices.

If you want to save resources you can adopt multiple strategies:

  • Use the cheapest plans in Azure
    • SQL
    • App services
      • Remember to put the app service plan in the tier Free so that it does not generate expenses

  • Optimize bandwidth by not sending blobs or images in your json files, but use a cdn or media storage to only send the url's of the images
answered by 03.01.2017 / 19:39
source