我可以对压缩/压缩文件进行多次写入和多次读取吗
这是否可能没有任何一致性问题? 哪种流行的压缩算法最适合此类目的?
Is this possible without any consistency problem.
Which popular compression algorithm will best suite for these kind of purpose ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
压缩文件系统是最简单的方法。您可以在 NTFS、ZFS 或 BTRFS 中启用压缩,具体取决于您的操作系统。但压缩程度并不大。
具有灵活容器的快速算法也可以。 Zip 似乎可行:如何更新 zip 存档中的一个文件< /a>
A compressed file system is the simplest way to do that. You can enable compression in NTFS, ZFS or BTRFS, depending on your OS. But the compression is not great.
A fast algorithm with an flexible container would also do. Zip seems workable: How to update one file in a zip archive