向unix文件系统添加压缩的问题

时间:2012-04-15 18:54:01

标签: filesystems compression

我正在修改操作系统课程,过去的一篇论文中的一个问题如下:

Some modern Unix filesystems support file-system internal compression.
That is, a file can be flagged so that within the filesystem, the file’s data
is compressed, although reading and writing to the file appears as normal
to users of the filesystem. What issues would you expect to have to be
addressed in adding compression to a traditional Unix filesystem?

我想不出任何需要解决的问题。谁能指出我正确的方向?感谢

1 个答案:

答案 0 :(得分:0)

您的问题包含最初需要解决的问题 - “虽然读取和写入文件对于文件系统的用户来说是正常的”。但是,压缩必须是透明。另一个因素可能是使用的压缩算法必须足够快,以免在I / O期间压缩/解压缩文件时引入太多延迟。