Currently working on an ajax project and feeling a bit confused. I have 3 functions that send data to the server, each with its own specific job.
Wondering if it's more efficient to group all the ajax requests from these functions into one big request to reduce request count and time, or to send each request separately to improve execution time at the server side but generate more requests.
Note: Both methods work for my application.