I don’t understand what is better to use. I want to make API with better solutions and found information about HTTP2 Push and Vulcain Protocol. So I decided to use it in my application. I used @ApiProperty(push: true)
, fetch on client and saw result in dev console:
enter image description here
But these are two different fetch requests. So I started google it and saw that Chrome disabled HTTP2 Push support. But still use 103 Early hints.
Is it possible to use 103 Early hints in Api Platform?
Should I use HTTP Push in Api Platform?
What is better to do in API for better performance?
Thank you!