I'd like some clarification on how firestore behaves via web.
reading this answer, Speed up fetching posts for my social network app by using query instead of observing a single event repeatedly
It is made very clear that on android all requests are done via a single persistent connection.
For my web app however, I'm using the javascript SDK and if i inspect the network traffic it looks like for each query, a seperate HTTP request is initiated.
Can someone confirm this is the way it is supposed to work? or have i misconfigured something that would allow something like a persistent HTTP2 connection?