Reputation: 3289
I read that Any CPU
indicates Microsoft.NET
to compile the IL to the architecture of the running Windows system (either x86 or x64).
I also read different sorts of suggestions - some people favor x86, some others x64, with different accounts of performance results.
My question is - in the case of Azure web sites, what should be the criteria to decide on x86, x64 and Any CPU? Thank you.
Upvotes: 0
Views: 333
Reputation: 3777
VM in Azure App Service are x64. 32-bit app will run just fine on a x64 machine.
Your question is more about 32bit app vs 64bit app. IMO, unless your application require larger address space, 32bit might be better choice since it normally use less memory.
Upvotes: 3