File tree Expand file tree Collapse file tree 3 files changed +19
-6
lines changed
Expand file tree Collapse file tree 3 files changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -79,10 +79,15 @@ All tests pass successfully in ~2.2 seconds.
7979
8080## Performance Benefits
8181
82- - ** 20-50% faster reconnections** - Reduced TLS handshake latency
83- - ** Lower CPU usage** - Fewer cryptographic operations
82+ TLS session resumption is a standard TLS feature that provides performance benefits:
83+
84+ - ** Faster reconnections** - Reduced TLS handshake latency by reusing cached sessions
85+ - ** Lower CPU usage** - Fewer cryptographic operations during reconnection
8486- ** Better throughput** - Especially for workloads with frequent reconnections
8587
88+ The actual performance improvement depends on various factors including network latency,
89+ server configuration, and workload characteristics.
90+
8691## Supported Connection Classes
8792
8893✅ AsyncoreConnection (default)
Original file line number Diff line number Diff line change @@ -233,10 +233,15 @@ cluster = Cluster(
233233
234234### Expected Benefits
235235
236- - ** Reduced connection time** : 20-50% faster reconnections
237- - ** Lower CPU usage** : Fewer cryptographic operations
236+ TLS session resumption is a standard TLS feature that provides performance benefits:
237+
238+ - ** Reduced connection time** : Faster reconnections by avoiding full TLS handshake
239+ - ** Lower CPU usage** : Fewer cryptographic operations during reconnection
238240- ** Better throughput** : Especially for workloads with frequent reconnections
239241
242+ The actual performance improvement depends on various factors including network latency,
243+ server configuration, and workload characteristics.
244+
240245### Overhead
241246
242247- ** Memory** : Minimal (~ 1KB per cached session)
Original file line number Diff line number Diff line change @@ -493,12 +493,15 @@ When session caching is enabled:
493493Performance Benefits
494494^^^^^^^^^^^^^^^^^^^^
495495
496- TLS session resumption can provide :
496+ TLS session resumption is a standard TLS feature that provides performance benefits :
497497
498- * **20-50% faster reconnection times** - Reduced handshake latency
498+ * **Faster reconnection times** - Reduced handshake latency by reusing cached sessions
499499* **Lower CPU usage** - Fewer cryptographic operations during reconnection
500500* **Better overall throughput** - Especially beneficial for workloads with frequent reconnections
501501
502+ The actual performance improvement depends on various factors including network latency,
503+ server configuration, and workload characteristics.
504+
502505Security Considerations
503506^^^^^^^^^^^^^^^^^^^^^^^
504507
You can’t perform that action at this time.
0 commit comments