with nginx is possible to cache the ssl handshake like this (https://docs.nginx.com/nginx/admin-guide/security-controls/terminating-ssl-tcp/):
ssl_session_cache shared:SSL:20m;
ssl_session_timeout 4h;
Is it possible to do the same thing in SpringBoot 2 with Tomcat?
I'm asking because during our performance tests we see errors like the following (using Gatling):
j.n.ConnectException: handshake timed out
If not is there any other options that can help me?
Thanks