HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Optimizing Vanilla
mtschirs
✭✭✭
Each simple request to e.g. a Vanilla discussion immediately causes three PHP processes to be started on the server.
- GET http://yourforum.com/discussions
immediately asynchronously loads - POST http://yourforum.com/dashboard/notifications/inform
- POST http://yourforum.com/settings/analyticstick.json (see also https://github.com/vanilla/vanilla/issues/3071)
If Garden.Analytics.Enabled=false, both anynchronous calls could just be merged into the synchronous first request without noticeable delay. Correct?
Tagged:
0