oxigdal-services 0.1.4

OGC Web Services (WFS, WCS, WPS, CSW) for OxiGDAL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Vector tile cache system with HTTP/2 server push hints.
//!
//! Provides LRU tile caching, prefetching, HTTP/2 push hint generation,
//! ETag validation, and unified tile serving logic.

pub mod cache;
pub mod http2_push;

pub use cache::{
    CacheStats, CachedTile, TileCache, TileEncoding, TileFormat, TileKey, TilePrefetcher,
};
pub use http2_push::{
    ETagValidator, PushHint, PushPolicy, PushRel, TileResponse, TileResponseStatus, TileServer,
};