0

Does the Azure app service(specifically App service plan) offering provide memory abstraction?

https://azure.microsoft.com/en-us/pricing/details/app-service/

If i create an app service with say 2 standard skew instances(1 CPU 1.75 giga bytes memory), Does that mean i have 2 * 1.75 giga bytes memory at my app's disposal? Can i create a jvm that has heap size of 2 gig in that plan for instance?

4

1 回答 1

0

If you specify two instances within an App Service plan, that's exactly what you get: Two instances, each having the spec of the size you chose for the App Service plan. They are not bridgeable into a single virtual double-size instance.

So, no - you cannot combine the resources of the two instances. If you need more memory, you'd need to choose a larger instance size.

于 2016-09-22T15:16:59.353 回答