AFAIK the entire idea behind reducing HTTP requests to increase website speed lies in HTTP's inability to handle concurrent requests. HTTP2 allows concurrent requests.
Is it still a performance benefit to reduce the number of HTTP requests made?
Or is it more effective to make numerous, smaller HTTP requests as they're handled concurrently?
Or is there a happy medium based on the number of concurrent requests a site/browsers can handle?
I'm specifically using nginx for this, but assume the same question applies equally to apache and other web servers.