How can I increase server SSL performance

喜欢而已 提交于 2019-12-05 06:03:06

Encryption/Decryption w/ java is really slow.
You should not use SSL implementation w/ java for the performance.
There are several ways to avoid java for SSL connection:

  1. Configure proxy server which provide SSL connection infront of your java server
  2. Implement ssl handshaking library w/ openssl use the library in netty code by jni

You could try re-using ssl sessions for existing connections, this reduces the ssl handshake and should give you a general boost.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!