This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

session_cache_stats

        # OpenSSL::SSL::SSLContext.session_cache_stats

(from ruby core)
### Implementation from SSLContext
---
    ctx.session_cache_stats -> Hash

---

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




      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.