HTTP vs HTTPS performance

后端 未结 22 2001
说谎
说谎 2020-11-22 10:30

Are there any major differences in performance between http and https? I seem to recall reading that HTTPS can be a fifth as fast as HTTP. Is this valid with the current g

22条回答
  •  清酒与你
    2020-11-22 10:59

    A more important performance difference is that an HTTPS session is ketp open while the user is connected. An HTTP 'session' lasts only for a single item request.

    It you are running a site with a large number of concurrent users, expect to buy a lot of memory.

提交回复
热议问题