Expand description
Parse cache for avoiding redundant protocol parsing.
In streaming mode with JOINs, multiple protocol readers traverse the same PCAP file. Without caching, each reader parses every packet independently, even though the parse result is the same.
The cache stores parsed protocol data keyed by frame number, allowing subsequent readers to reuse previous parse results.
Structs§
- Cache
Stats - Cache statistics for monitoring.
- Cached
Parse - Cached parse result for a single packet.
- LruParse
Cache - LRU parse cache with configurable size limit.
- NoCache
- No-op cache implementation for when caching is disabled.
- Owned
Parse Result - Owned parse result for a single protocol layer.
Traits§
- Parse
Cache - Cache for parsed packet data.