Skip to main content

oxigdal_services/tile_cache/
mod.rs

1//! Vector tile cache system with HTTP/2 server push hints.
2//!
3//! Provides LRU tile caching, prefetching, HTTP/2 push hint generation,
4//! ETag validation, and unified tile serving logic.
5
6pub mod cache;
7pub mod http2_push;
8
9pub use cache::{
10    CacheStats, CachedTile, TileCache, TileEncoding, TileFormat, TileKey, TilePrefetcher,
11};
12pub use http2_push::{
13    ETagValidator, PushHint, PushPolicy, PushRel, TileResponse, TileResponseStatus, TileServer,
14};