pub fn get_cache_prefix() -> Option<&'static String>
获取缓存 key 前缀
如果未设置,返回 None
None
use fbc_starter::cache::get_cache_prefix; if let Some(prefix) = get_cache_prefix() { println!("当前前缀: {}", prefix); }