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:// on http://?

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

source

unless application keenly aware of networking protocols, shouldn't matter our day-to-day crud interfaces.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -