当前位置: 首页 > 工具软件 > Jimfs > 使用案例 >

jimfs 内存文件系统

颜祖鹤
2023-12-01

当你的项目性能受制于磁盘的IO瓶颈时,可以试试内存文件系统jimfs


google出品,肯定还行是吧。

既然我们不用在生产系统中,但是有时候去一些机构过检对性能是有要求的,可又临时凑凑。


当然把内存当磁盘用的工具也很多,这里暂不考虑。

使用起来,也超简单

 

1,引入

<dependency>
  <groupId>com.google.jimfs</groupId>
  <artifactId>jimfs</artifactId>
  <version>1.1</version>
</dependency>

2,开干

FileSystem fs = Jimfs.newFileSystem(Configuration.unix());
Path foo = fs.getPath("/foo");
Files.createDirectory(foo);

Path hello = foo.resolve("hello.txt"); // /foo/hello.txt
Files.write(hello, ImmutableList.of("hello world"), StandardCharsets.UTF_8);

想想内存较于磁盘的性能,就是激动啊

 

github地址:https://github.com/google/jimfs

 类似资料: