Expand description
high refers to high RAM usage - using this module you will be effectively
storing the entire blog in memory at all times using a lazy static. Highest
runtime performance but higest RAM usage
ⓘ
lazy_static! {
pub static ref STATIC_BLOG_ENTRIES: HighBlog =
get_high_blog(PathBuf::from(BLOG_ROOT), None, None, URL, &SitemapOptions::default());
}Structs§
- High
Blog - The main
HighBlogwhich stores all relevant information for the blog - High
Blog Entry - An individual blog post
Functions§
- get_
high_ blog - Gets the whole
HighBlogfrom the specified path. Useful to combine with lazy static for loading times