Ajax requests are no longer executed simultaneously if this plugin is activated
-
If this plugin is activated, Ajax requests in the WordPress backend are no longer executed simultaneously, but one after the other.
I tested this by sending Ajax requests with an artificial, server-side waiting pause (with php function sleep). First I send a request that takes 10 seconds and immediately afterwards one that only takes 1 second. Normally, the second request is successfully completed before the first and shows a duration of just over one second in the dev console. The first request is terminated after approx. 10 seconds.
If this plugin is activated, one request is processed after the other, i.e. the second request is processed after the first has been completed. In the example, the second request takes more than 11 seconds (10 seconds of the first + 1 of the second).
Do you have any idea why this might be? Is your plugin changing some global property of the XHR request?
I have now deactivated the plugin because it causes enormous performance losses when working with other plugins in the admin section.
- The topic ‘Ajax requests are no longer executed simultaneously if this plugin is activated’ is closed to new replies.