Reputation: 411
I wanted to benchmark cloud services so I wanted to run this php benchmark on azure App service. When i have 1 core 1 instance app service plan, the incoming requests are handled one by one (no parallel handling). When I switch to 2 core plan, the requests are handled parallel to each other. BUT when I use 1 core plan and 2 instances, it doesn't handle the requests in parallel. So what do instances exactly do, when the app runs only on one?
Upvotes: 0
Views: 327
Reputation: 411
So my problem was caused by two things:
Upvotes: 1