You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Server push is great for applications which know 1 request generally follows another. For example, a request for /index.html will almost always be followed by a request for /bundle.js and /bundle.css . It allows the server and the client to sidestep the roundtrip requirement.
It can also come in handy for things like replacing polling with pushing.
The text was updated successfully, but these errors were encountered:
Some reading
https://blogs.oracle.com/theaquarium/entry/http_2_and_server_push
Server push is great for applications which know 1 request generally follows another. For example, a request for /index.html will almost always be followed by a request for /bundle.js and /bundle.css . It allows the server and the client to sidestep the roundtrip requirement.
It can also come in handy for things like replacing polling with pushing.
The text was updated successfully, but these errors were encountered: