FreeBSD 支持内存映射文件吗?
我使用的是 FreeBSD 操作系统,我想写入磁盘上的文件,但是,这会花费很多时间,所以,建议我使用内存映射文件。但是,我陷入了困境,FreeBSD 是否支持它???.. 请有人可以指导我吗? .. 我正在用 C++ 编程。
I am using a FreeBSD OS, I want to write into a file which is on the disk, but, it will take a lot of time, so, I was suggested to use Memory mapped file. But, I am in a dilemma whether FreeBSD supports it or no???.. Please, somebody can guide me??.. I am programming in C++.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
任何 UNIX(Posix 兼容操作系统)都有
mmap
,所以 FreeBSD 有它。STL本身并不存在。 (参见例如“STL”和“ C++ 标准库”?)
你的意思是:
不,C++ 标准库不直接提供/包装对 mmap 的支持。但是,您可以在这里查看:
boost::iostreams::mapped_file
Any UNIX (Posix compliant OS) has
mmap
, so yes FreeBSD has it.STL does not exist as such. (see e.g. What's the difference between "STL" and "C++ Standard Library"?)
You mean:
No, the C++ standard library does not directly provide/wrap support for mmap. However, you can have a look here:
boost::iostreams::mapped_file
是的,FreeBSD 有 内存映射文件。不,STL 不包含对它们的任何特殊支持。考虑使用 Boost。
Yes, FreeBSD has memory mapped files. No, the STL does not include any special support for them. Consider using Boost.