php - What does HTTP 2 mean for Web Developers -
when comes building web applications, know http 2 going recommended traffic coming site. understand security concerns , reason why recommended/forced used now.
when comes web-based languages code in , understand such ruby, php, , perl.
is there special functions have produce secure connection server or need redirect traffic https://
on http://
?
basically, autoloading class in php load classes , functions web application operate. need create ssl.class.php
allowing connection secure within php?
the changes in http/2.0 on http/1.1 relevant if application streams large amounts of data many simultaneous users.
is there special functions have produce secure connection server or need redirect traffic
https://
onhttp://
?
no. http/2.0 not require tls. if want tls (which, personally, i encourage), still need send clients https://
.
basically, autoloading class in php load classes , functions web application operate. need create ssl.class.php allowing connection secure within php?
in cases, http layer webserver problem, not php-land application code problem.
if working on framework insists on parsing request headers , managing responses in http-like fashion, yes, need aware of of changes in new version of protocol.
differences between http/1.1 , http/2.0 developers
- servers can push more data on established connection in http/2.0. neat if need push real-time notifications (e.g. stackoverflow does).
- better multiplexing , streaming; it's possible stream multiple resources on same http connection.
unless application keenly aware of networking protocols, shouldn't matter our day-to-day crud interfaces.
Comments
Post a Comment