I am trying to analyse one of our applications running in production, and currently the value of javax.net.ssl.sessionCacheSize
is set to 10000.
we are using java 17 in production, and by default in Java 17, value of javax.net.ssl.sessionCacheSize
is set to 20480.
I wanted to understand what happens when this sessionCacheSize becomes full? Does it trigger a GC event (We use G1GC in Prod)? Or application response times would go high? or application won't accept new connect until the existing connections get dropped and cache has some space to create the session?