quic_dist_tickets (quic v1.3.1)
View SourceSession ticket storage for 0-RTT fast reconnection.
This module manages session tickets received from peer nodes, enabling 0-RTT reconnection which reduces connection latency significantly.
How It Works
1. After a successful TLS handshake, the server sends session tickets 2. The client stores these tickets associated with the node name 3. On reconnection, the client can use the ticket for 0-RTT 4. Tickets expire after their lifetime and are cleaned up
Summary
Functions
Manually trigger cleanup of expired tickets.
Delete a session ticket for a node.
Look up a session ticket for a node.
Start the ticket storage server.
Store a session ticket for a node.
Functions
-spec cleanup() -> ok.
Manually trigger cleanup of expired tickets.
-spec delete(Node :: node()) -> ok.
Delete a session ticket for a node.
Look up a session ticket for a node.
Start the ticket storage server.
Store a session ticket for a node.