Reputation: 3123
I've just set-up newrelic on an azure cloud service and now sifting through the logs to make any improvements.
For the imageresizer requests, I'm noticing a significant amount of time in AuthorizeRequest, here's a typical transaction:
Is AuthorizeRequest actually where the grunt of the image processing occurs? Hence the high percent of batch? Or can I reduce the time spent here re-configuring the app as there needn't be any authorization required for the images?
Upvotes: 3
Views: 382
Reputation: 16468
Yes, everything happens during AuthorizeRequest, as this permits the request to be rewritten to a static file (if cached) prior to ProcessRequest.
Upvotes: 2