Thanks for reaching here! If Understand right your query is speeding up Wordpress in Azure.
To elaborate on this: The key design elements in App Service that may contribute to the latency.
• App Service uses Azure Storage as the persistent storage for Web Apps, WordPress is installed on the persistent storage by default.
• If you are not using MySQL in-app feature (Windows only), then any other MySQL solution used with Web App is not living on the same virtual machine as the website.
You may consider implementing below easy steps to speed up your WordPress site.
- Co-locate WordPress site and database
- Choose the right MySQL database solution for your WordPress needs
- Optimize your database
- consider adding some form of caching for your site
- For low traffic web site, you can enable AlwaysOn to keep your web app always loaded, as by default, apps are unloaded if they are idle for some period of time.
- Compress images
- Reduce HTTP requests
- Use Azure CDN
- Diagnose if your theme is slowing down your site
- Diagnose if any plugin is slowing down your site
- Check Permalink format
- Turn off Pingbacks and Trackbacks if you don't use it
- Specify image dimension
Reference: Best Practices for Hosting WordPress Site on Azure App Service
Please let us know if further query.
If response helps please click ‘Accept Answer’ & ‘Up-Vote’ to benefit the community find the right answers.