pub type PostListCache = Cache<CacheKey, (Vec<PostListItem>, i64)>;
文章列表缓存类型,值为(文章列表,总数)。
pub struct PostListCache { /* private fields */ }