#cache #open-file #handle

file_cache

文件缓存打开句柄

4个版本

0.0.5 2022年7月25日
0.0.4 2022年7月25日
0.0.3 2022年7月12日
0.0.2 2022年7月12日

#26 in #open-file

Apache-2.0

10KB

file_cache

文件缓存打开句柄

使用示例

./examples/main.rs

use anyhow::Result;
use async_std::io::{prelude::SeekExt, ReadExt, SeekFrom};
use file_cache::FileCache;

async fn get(cache: &mut FileCache) -> Result<()> {
  let mut path = std::env::current_exe()?;
  (0..4).for_each(|_| {
    path.pop();
  });
  let path = path.join("Cargo.toml").display().to_string();
  let host = cache.get(path).await?;
  let mut host = host.value();
  host.seek(SeekFrom::Start(0)).await?;
  let mut out = [0u8; 1024];
  let n = host.read(&mut out).await?;
  println!("{}", std::str::from_utf8(&out[..n])?);
  dbg!(n);
  Ok(())
}

#[async_std::main]
async fn main() -> Result<()> {
  let mut cache = FileCache::new(2048)?;
  get(&mut cache).await?;
  Ok(())
}

依赖项

~8–17MB
~246K SLoC