yggdrasil/tasks/mod.rs
1//! 后台任务调度入口。
2//!
3//! 所有任务仅在 `server` feature 启用时编译,运行在服务端独立的 tokio 任务中。
4
5/// 定时清理图片磁盘缓存,避免缓存目录无限增长。
6#[cfg(feature = "server")]
7pub mod image_cache_cleanup;
8/// 定时清理评论过期的 IP 与用户代理信息,满足隐私保护要求。
9#[cfg(feature = "server")]
10pub mod ip_purge;
11/// 定时清理回收站中超过保留期的已删除文章。
12#[cfg(feature = "server")]
13pub mod post_purge;
14/// 定时删除已过期会话,避免 `sessions` 表无限增长。
15#[cfg(feature = "server")]
16pub mod session_cleanup;