session_cache_stats
session_cache_stats()Returns a Hash containing the following keys:
:accept |
Number of started SSL/TLS handshakes in server mode |
:accept_good |
Number of established SSL/TLS sessions in server mode |
:accept_renegotiate |
Number of start renegotiations in server mode |
:cache_full |
Number of sessions that were removed due to cache overflow |
:cache_hits |
Number of successfully reused connections |
:cache_misses |
Number of sessions proposed by clients that were not found in the cache |
:cache_num |
Number of sessions in the internal session cache |
:cb_hits |
Number of sessions retrieved from the external cache in server mode |
:connect |
Number of started SSL/TLS handshakes in client mode |
:connect_good |
Number of established SSL/TLS sessions in client mode |
:connect_renegotiate |
Number of start renegotiations in client mode |
:timeouts |
Number of sessions proposed by clients that were found in the cache but had expired due to timeouts |