file_lru 0.1.5

Efficient file handle caching for WAL random reads / 高效 WAL 随机读取的文件句柄缓存
Documentation
use aok::{OK, Void};
use log::info;

#[static_init::constructor(0)]
extern "C" fn _log_init() {
  log_init::init();
}

// #[compio::test]
// async fn test_async() -> Void {
//   info!("async {}", 123456);
//   OK
// }

#[test]
fn test() -> Void {
  info!("> test {}", 123456);
  OK
}