5

Will SSL Encryption slow down page load? If so, how do I estimate the impact on performance for my web application?

Matthew
  • 10,988
  • 11
  • 54
  • 69
  • possible duplicate of [How much overhead does SSL impose?](http://stackoverflow.com/questions/548029/how-much-overhead-does-ssl-impose) – Jonas Dec 11 '11 at 01:18
  • I measured Mitch Wheat's answer for level of constructiveness. 0% result. – Jayden Lawson Oct 10 '13 at 09:16

1 Answers1

5

This is a possible duplicate of several questions:

The last includes this answer, including: "non-SSL sockets are less than 10 times faster than SSL sockets". However, this can be a bit misleading - be sure to read the entire answer.

You can also mitigate the performance concern, at least on the server-side, by offloading the SSL processing to another device, e.g. a dedicated load balancer or firewall.

Community
  • 1
  • 1
ziesemer
  • 27,712
  • 8
  • 86
  • 94